Vim - ctags: tag not found
I want to use Ctags for a Zend framework project. I executed this command : ctags -R ./* ../ZendFramework/* to create a list of tags, but the problem is when I press Ctrl-] on a class or method I get this error: ctags: tag not found I checked the tags file and all classes/methods/variables are listed. The tags files is located in the root of the project. Should I load it manullay when I open a file? Yes, you should tell Vim where to find your tags file with something like: :set tags=/path/to/tags This is not very optimal, though. This line in your ~/.vimrc should help: set tags=./tags,tags;