comparison plugin/gutentags.vim @ 89:8bf96f9f649c

Add support for project types.
author Ludovic Chabant <ludovic@chabant.com>
date Tue, 01 Dec 2015 22:04:45 -0800
parents 073e63cc0456
children 6bbed9e4c01e
comparison
equal deleted inserted replaced
88:073e63cc0456 89:8bf96f9f649c
51 51
52 if !exists('g:gutentags_project_root') 52 if !exists('g:gutentags_project_root')
53 let g:gutentags_project_root = [] 53 let g:gutentags_project_root = []
54 endif 54 endif
55 let g:gutentags_project_root += ['.git', '.hg', '.svn', '.bzr', '_darcs', '_FOSSIL_', '.fslckout'] 55 let g:gutentags_project_root += ['.git', '.hg', '.svn', '.bzr', '_darcs', '_FOSSIL_', '.fslckout']
56
57 if !exists('g:gutentags_project_info')
58 let g:gutentags_project_info = []
59 endif
60 call add(g:gutentags_project_info, {'type': 'python', 'file': 'setup.py'})
61 call add(g:gutentags_project_info, {'type': 'ruby', 'file': 'Gemfile'})
56 62
57 if !exists('g:gutentags_exclude') 63 if !exists('g:gutentags_exclude')
58 let g:gutentags_exclude = [] 64 let g:gutentags_exclude = []
59 endif 65 endif
60 66