Mercurial > vim-gutentags
comparison plugin/gutentags.vim @ 75:d12543f11eb9
Move the default `-R` option to an overridable "global" options file.
This makes it possible for a `.gutctags` file to disable the `-R` flag.
Also fixes Github issue #33.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Mon, 27 Jul 2015 14:18:10 -0700 |
parents | 50d2a7cbf7c8 |
children | fa749380e05a |
comparison
equal
deleted
inserted
replaced
74:cb1cf815052e | 75:d12543f11eb9 |
---|---|
80 call mkdir(g:gutentags_cache_dir, 'p') | 80 call mkdir(g:gutentags_cache_dir, 'p') |
81 endif | 81 endif |
82 | 82 |
83 if has('win32') | 83 if has('win32') |
84 let g:gutentags_plat_dir = expand('<sfile>:h:h:p') . "\\plat\\win32\\" | 84 let g:gutentags_plat_dir = expand('<sfile>:h:h:p') . "\\plat\\win32\\" |
85 let g:gutentags_res_dir = expand('<sfile>:h:h:p') . "\\res\\" | |
85 let g:gutentags_script_ext = '.cmd' | 86 let g:gutentags_script_ext = '.cmd' |
86 else | 87 else |
87 let g:gutentags_plat_dir = expand('<sfile>:h:h:p') . '/plat/unix/' | 88 let g:gutentags_plat_dir = expand('<sfile>:h:h:p') . '/plat/unix/' |
89 let g:gutentags_res_dir = expand('<sfile>:h:h:p') . '/res/' | |
88 let g:gutentags_script_ext = '.sh' | 90 let g:gutentags_script_ext = '.sh' |
89 endif | 91 endif |
90 | 92 |
91 " }}} | 93 " }}} |
92 | 94 |