Mercurial > vim-gutentags
comparison plugin/gutentags.vim @ 118:2838af9ff980
Add `g:gutentags_exclude_project_root`.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Tue, 05 Apr 2016 21:58:15 -0700 |
parents | 6bbed9e4c01e |
children | 5776acb079cf |
comparison
equal
deleted
inserted
replaced
117:df3b0ca48013 | 118:2838af9ff980 |
---|---|
60 call add(g:gutentags_project_info, {'type': 'python', 'file': 'setup.py'}) | 60 call add(g:gutentags_project_info, {'type': 'python', 'file': 'setup.py'}) |
61 call add(g:gutentags_project_info, {'type': 'ruby', 'file': 'Gemfile'}) | 61 call add(g:gutentags_project_info, {'type': 'ruby', 'file': 'Gemfile'}) |
62 | 62 |
63 if !exists('g:gutentags_exclude') | 63 if !exists('g:gutentags_exclude') |
64 let g:gutentags_exclude = [] | 64 let g:gutentags_exclude = [] |
65 endif | |
66 | |
67 if !exists('g:gutentags_exclude_project_root') | |
68 let g:gutentags_exclude_project_root = ['/usr/local'] | |
65 endif | 69 endif |
66 | 70 |
67 if !exists('g:gutentags_resolve_symlinks') | 71 if !exists('g:gutentags_resolve_symlinks') |
68 let g:gutentags_resolve_symlinks = 0 | 72 let g:gutentags_resolve_symlinks = 0 |
69 endif | 73 endif |