一 ctags
1 安装
安装ctags比较简单,我用的是vim-plug,网络上随便一搜应该就有很多教程,而且没有什么坑
2 使用
vim之函数跳转功能_nvim函数跳转-CSDN博客https://blog.csdn.net/ballack_linux/article/details/71036072不过针对cuda程序,不能用ctags -R .来创建符号,而是需要
ctags -R --langmap=c++:+.cu *
并且需要在vimrc中加入
set tags=tags;
set autochdir
二 tagbar
记一次通过vim-plug安装tagbar过程_vim tagbar tagbar: exuberant ctags not found!-CSDN博客https://blog.csdn.net/L_insting/article/details/106201569
call plug#begin('~/.vim/plugged')
Plug 'majutsushi/tagbar'
call plug#end()
:TagbarToggle