comparison autoload/gutentags.vim @ 48:c1b33dc55b1c

Fix bug with `GutentagsUpdate` command.
author Ludovic Chabant <ludovic@chabant.com>
date Thu, 09 Apr 2015 21:46:54 -0700
parents 7b419abf7fba
children 96067ed08fb1
comparison
equal deleted inserted replaced
47:7b419abf7fba 48:c1b33dc55b1c
183 return ' &' 183 return ' &'
184 endif 184 endif
185 endfunction 185 endfunction
186 186
187 " (Re)Generate the tags file for the current buffer's file. 187 " (Re)Generate the tags file for the current buffer's file.
188 function! s:manual_update_tags(module, bang) abort 188 function! s:manual_update_tags(bang) abort
189 for module in g:gutentags_modules 189 for module in g:gutentags_modules
190 call s:update_tags(module, a:bang, 0) 190 call s:update_tags(module, a:bang, 0)
191 endfor 191 endfor
192 endfunction 192 endfunction
193 193