mirror of
https://github.com/ViViDboarder/vim-settings.git
synced 2024-11-17 23:26:27 +00:00
Add back equivalent async TagsUpdate command with Gutentags
This commit is contained in:
parent
fde09749bf
commit
aa0686208b
@ -121,9 +121,11 @@ nmap gb :bn<CR>
|
|||||||
nmap gB :bp<CR>
|
nmap gB :bp<CR>
|
||||||
|
|
||||||
" Command to display TODO tags in project
|
" Command to display TODO tags in project
|
||||||
|
" Generally, this is overriden in vim-grepper
|
||||||
command Todo grep TODO
|
command Todo grep TODO
|
||||||
|
|
||||||
" Easy update tags
|
" Easy update tags
|
||||||
|
" Generally this is overriden by Gutentags
|
||||||
command TagsUpdate !ctags -R .
|
command TagsUpdate !ctags -R .
|
||||||
|
|
||||||
" Set grepprg
|
" Set grepprg
|
||||||
|
@ -55,6 +55,7 @@ call s:smart_source_rc('plugins/tagbar')
|
|||||||
call s:smart_source_rc('plugins/tcomment_vim')
|
call s:smart_source_rc('plugins/tcomment_vim')
|
||||||
if (v:version > 703) && !exists('g:gui_oni')
|
if (v:version > 703) && !exists('g:gui_oni')
|
||||||
Plug 'ludovicchabant/vim-gutentags' " Auto generate tags files
|
Plug 'ludovicchabant/vim-gutentags' " Auto generate tags files
|
||||||
|
command! TagsUpdate :GutentagsUpdate<CR>
|
||||||
end
|
end
|
||||||
|
|
||||||
" TODO: Probably remove
|
" TODO: Probably remove
|
||||||
|
Loading…
Reference in New Issue
Block a user