This repository has been archived on 2021-12-21. You can view files and clone it, but cannot push or open issues/pull-requests.
neovim-config/init/tagbar.vim

14 lines
412 B
VimL
Raw Normal View History

2020-08-08 20:27:01 +02:00
" Navigating between tags
" Go to next one
let g:tagbar_map_nexttag = 'j'
" Go to previous one
let g:tagbar_map_prevtag = 'k'
" Show prototype of current tag
let g:tagbar_map_showproto = 'u'
" Open tagbar when opening certain language types
autocmd BufNewFile,BufReadPre *.py,*.java,*.rs,*.cpp,*.c TagbarOpen
" Explicitly close tagbar for these types
autocmd BufNewFile,BufReadPre *.md,*.vim,*.txt TagbarClose