Mercurial > vim-gutentags
comparison autoload/gutentags.vim @ 141:7bc4df0225d1
Add support for specifying buffer-specific tagfiles.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Thu, 22 Sep 2016 22:14:17 -0700 |
parents | 286e5b3095d0 |
children | d566ec6cd2f7 |
comparison
equal
deleted
inserted
replaced
140:95092f4fbc4b | 141:7bc4df0225d1 |
---|---|
181 if &buftype != '' | 181 if &buftype != '' |
182 return | 182 return |
183 endif | 183 endif |
184 | 184 |
185 " Let the user specify custom ways to disable Gutentags. | 185 " Let the user specify custom ways to disable Gutentags. |
186 if g:gutentags_enabled_user_func != '' && | 186 if g:gutentags_init_user_func != '' && |
187 \!call(g:gutentags_enabled_user_func, [expand('%:p')]) | 187 \!call(g:gutentags_init_user_func, [expand('%:p')]) |
188 call gutentags#trace("Ignoring '" . bufname('%') . "' because of " . | 188 call gutentags#trace("Ignoring '" . bufname('%') . "' because of " . |
189 \"custom user function.") | 189 \"custom user function.") |
190 return | 190 return |
191 endif | 191 endif |
192 | 192 |