Skip to content

Latest commit

 

History

History
22 lines (22 loc) · 702 Bytes

vim-ctags.md

File metadata and controls

22 lines (22 loc) · 702 Bytes

Ctags

Install

$ sudo apt-get update && sudo apt-get install -y exuberant-ctags

Install without sudo

  1. Download ctags source: http://prdownloads.sourceforge.net/ctags/ctags-5.8.tar.gz
  2. Extract, compile and install in the home directory
$ tar zxf ctags-5.8.tar.gz
$ cd ctags-5.8
$ ./configure --prefix=$HOME
$ make && make install
  1. ctags is installed under $HOME/bin, make sure to add it to $PATH in .bashrc or similar
export PATH="$HOME/bin:$PATH"

Resources