Mercurial > vim-gutentags
comparison 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 |
comparison
equal
deleted
inserted
replaced
228:b2d0b28d8001 | 229:34bee0477b51 |
---|---|
48 | 48 |
49 let g:gutentags_project_info = get(g:, 'gutentags_project_info', []) | 49 let g:gutentags_project_info = get(g:, 'gutentags_project_info', []) |
50 call add(g:gutentags_project_info, {'type': 'python', 'file': 'setup.py'}) | 50 call add(g:gutentags_project_info, {'type': 'python', 'file': 'setup.py'}) |
51 call add(g:gutentags_project_info, {'type': 'ruby', 'file': 'Gemfile'}) | 51 call add(g:gutentags_project_info, {'type': 'ruby', 'file': 'Gemfile'}) |
52 | 52 |
53 let g:gutentags_exclude_filetypes = get(g:, 'gutentags_exclude_filetypes', []) | |
53 let g:gutentags_exclude_project_root = get(g:, 'gutentags_exclude_project_root', ['/usr/local']) | 54 let g:gutentags_exclude_project_root = get(g:, 'gutentags_exclude_project_root', ['/usr/local']) |
54 let g:gutentags_resolve_symlinks = get(g:, 'gutentags_resolve_symlinks', 0) | 55 let g:gutentags_resolve_symlinks = get(g:, 'gutentags_resolve_symlinks', 0) |
55 let g:gutentags_generate_on_new = get(g:, 'gutentags_generate_on_new', 1) | 56 let g:gutentags_generate_on_new = get(g:, 'gutentags_generate_on_new', 1) |
56 let g:gutentags_generate_on_missing = get(g:, 'gutentags_generate_on_missing', 1) | 57 let g:gutentags_generate_on_missing = get(g:, 'gutentags_generate_on_missing', 1) |
57 let g:gutentags_generate_on_write = get(g:, 'gutentags_generate_on_write', 1) | 58 let g:gutentags_generate_on_write = get(g:, 'gutentags_generate_on_write', 1) |