1、开发环境
Ubuntu16.04(64bit)
2、错误描述
安装好Vim的TagList插件后,打开Vim提示:
Taglist: Exuberant ctags (http://ctags.sf.net) not found in PATH. Plugin is not loaded.
3、解决方法
根据参考资料[1]的提示,可知那是因为当前系统没有安装ctags导致的,安装一个即可:
sudo apt-get install ctags
参考资料:
[1]'Taglist: Exuberant ctags (http://ctags.sf.net) not found in PATH. Plugin is not loaded.怎么办?
After launching MacVim you may get this annoying error message:
'Taglist: Exuberant ctags (http://ctags.sf.net) not found in PATH. Plugin is not loaded.'
To remove this you have to install ctags which you can download from http://ctags.sf.net.
After you unziped it, you have to set the Tlist_Ctags_Cmd variable in the .vimrc file to point to the ctags folder.
let Tlist_Ctags_Cmd = '/usr/local/bin/ctags'
After that you have to restart vim and the message should not pop up again.