comparison plugin/gutentags.vim @ 85:0424970d81f8

Add a `g:gutentags_resolve_symlinks` option to resolve symlinks at setup time.
author Ludovic Chabant <ludovic@chabant.com>
date Fri, 09 Oct 2015 15:28:39 -0700
parents 208130c6245e
children 073e63cc0456
comparison
equal deleted inserted replaced
84:96bfe5c37f37 85:0424970d81f8
50 endif 50 endif
51 let g:gutentags_project_root += ['.git', '.hg', '.svn', '.bzr', '_darcs', '_FOSSIL_', '.fslckout'] 51 let g:gutentags_project_root += ['.git', '.hg', '.svn', '.bzr', '_darcs', '_FOSSIL_', '.fslckout']
52 52
53 if !exists('g:gutentags_exclude') 53 if !exists('g:gutentags_exclude')
54 let g:gutentags_exclude = [] 54 let g:gutentags_exclude = []
55 endif
56
57 if !exists('g:gutentags_resolve_symlinks')
58 let g:gutentags_resolve_symlinks = 0
55 endif 59 endif
56 60
57 if !exists('g:gutentags_generate_on_new') 61 if !exists('g:gutentags_generate_on_new')
58 let g:gutentags_generate_on_new = 1 62 let g:gutentags_generate_on_new = 1
59 endif 63 endif