Mercurial > vim-gutentags
comparison plugin/gutentags.vim @ 165:cbc1ebe23ef1
Rename all ctags-related options to have "ctags" in their name.
Add some stuff to handle old options so it doesn't break everybody.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Sat, 18 Feb 2017 18:21:35 -0800 |
parents | 41fa23706d9c |
children | 2489b4b54d5c |
comparison
equal
deleted
inserted
replaced
164:28d4dae03f2a | 165:cbc1ebe23ef1 |
---|---|
43 | 43 |
44 let g:gutentags_project_info = get(g:, 'gutentags_project_info', []) | 44 let g:gutentags_project_info = get(g:, 'gutentags_project_info', []) |
45 call add(g:gutentags_project_info, {'type': 'python', 'file': 'setup.py'}) | 45 call add(g:gutentags_project_info, {'type': 'python', 'file': 'setup.py'}) |
46 call add(g:gutentags_project_info, {'type': 'ruby', 'file': 'Gemfile'}) | 46 call add(g:gutentags_project_info, {'type': 'ruby', 'file': 'Gemfile'}) |
47 | 47 |
48 let g:gutentags_exclude = get(g:, 'gutentags_exclude', []) | |
49 let g:gutentags_exclude_project_root = get(g:, 'gutentags_exclude_project_root', ['/usr/local']) | 48 let g:gutentags_exclude_project_root = get(g:, 'gutentags_exclude_project_root', ['/usr/local']) |
50 let g:gutentags_resolve_symlinks = get(g:, 'gutentags_resolve_symlinks', 0) | 49 let g:gutentags_resolve_symlinks = get(g:, 'gutentags_resolve_symlinks', 0) |
51 let g:gutentags_generate_on_new = get(g:, 'gutentags_generate_on_new', 1) | 50 let g:gutentags_generate_on_new = get(g:, 'gutentags_generate_on_new', 1) |
52 let g:gutentags_generate_on_missing = get(g:, 'gutentags_generate_on_missing', 1) | 51 let g:gutentags_generate_on_missing = get(g:, 'gutentags_generate_on_missing', 1) |
53 let g:gutentags_generate_on_write = get(g:, 'gutentags_generate_on_write', 1) | 52 let g:gutentags_generate_on_write = get(g:, 'gutentags_generate_on_write', 1) |