Tag jump by using universal-ctags in VIM
- Set tagfunc in your vimrc as
autocmd BufNewFile,BufRead *.erl,*.hrl setlocal tagfunc=vimErlangTagJump#TagFunc
If you want to use some specific sort algorithm, please set a max length to avoid stack due to long tag list
- Set algorithm and length
let g:vimErlangTagJump_sortTag = PathToYourAlgorithmFile let g:vimErlangTagJump_sortLengthMax = 15