Sort vim tagbar by order in source

This commit is contained in:
Michael Campagnaro 2022-01-01 13:41:53 -05:00
parent 307c99f6fc
commit 3eeb4b8817

6
vimrc
View File

@ -637,12 +637,12 @@ endfun
" save. So if you make changes to them then you need to manually reload this " save. So if you make changes to them then you need to manually reload this
" file using <leader>rv or whatever. :ReloadVimrcError " file using <leader>rv or whatever. :ReloadVimrcError
function! DoSingleWrite() function! DoSingleWrite()
write write!
call s:CreateCtags() call s:CreateCtags()
endfunction endfunction
function! DoSingleWriteThenQuit() function! DoSingleWriteThenQuit()
write write!
call s:CreateCtags() call s:CreateCtags()
quit quit
endfunction endfunction
@ -797,6 +797,8 @@ let g:localvimrc_ask = 0
" TAGBAR " TAGBAR
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
noremap <F12> :TagbarToggle<cr> noremap <F12> :TagbarToggle<cr>
" Sort tags by their order in the source file. Press 's' to sort them alphabetically.
let g:tagbar_sort = 0
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" GITGUTTER " GITGUTTER