taeguk / vim-taeguk

taeguk's vim settings
MIT License
12 stars 5 forks source link

Taglist error can be occured if ctags is not installed in the system. #1

Closed taeguk closed 8 years ago

taeguk commented 9 years ago

Vim error can be occured if ctags is not installed in the system. Error message example in below --------------------------------- Taglist: Exuberant ctags (http://ctags.sf.net) not found in PATH. Plugin is not loaded.

In this case, you must install ctags.

taeguk commented 9 years ago

If your system is Ubuntu, sudo apt-get install ctags

If you want to install with non-root user,

  1. go to "http://ctags.sf.net" and download source
  2. build
  3. environment PATH re-setting

Let's try it below ---------------------------------------- wget http://prdownloads.sourceforge.net/ctags/ctags-5.8.tar.gz tar -xvzf ctags-5.8.tar.gz cd ctags-5.8 ./configure make echo "export PATH=\$PATH:\$HOME/ctags-5.8" >> ~/.profile export PATH=$PATH:$HOME/ctags-5.8

good luck :)