Mercurial > vim-gutentags
diff plugin/gutentags.vim @ 229:34bee0477b51
Add `g:gutentags_exclude_filetypes` setting.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Mon, 12 Nov 2018 00:07:27 -0800 |
parents | 18dbf8d02b4c |
children | 050d0549ecf3 |
line wrap: on
line diff
--- a/plugin/gutentags.vim Sun Nov 11 22:17:52 2018 -0800 +++ b/plugin/gutentags.vim Mon Nov 12 00:07:27 2018 -0800 @@ -50,6 +50,7 @@ call add(g:gutentags_project_info, {'type': 'python', 'file': 'setup.py'}) call add(g:gutentags_project_info, {'type': 'ruby', 'file': 'Gemfile'}) +let g:gutentags_exclude_filetypes = get(g:, 'gutentags_exclude_filetypes', []) let g:gutentags_exclude_project_root = get(g:, 'gutentags_exclude_project_root', ['/usr/local']) let g:gutentags_resolve_symlinks = get(g:, 'gutentags_resolve_symlinks', 0) let g:gutentags_generate_on_new = get(g:, 'gutentags_generate_on_new', 1)