Vim Tips Wiki
(link to ctags; remove junk)
m (category)
Line 8: Line 8:
 
|version=6.0
 
|version=6.0
 
|rating=94/37
 
|rating=94/37
|category1=
+
|category1=Navigation
 
|category2=
 
|category2=
 
}}
 
}}

Revision as of 15:28, 3 May 2011

Tip 804 Printable Monobook Previous Next

created October 12, 2004 · complexity intermediate · author Dubhead · version 6.0


At the top of a source tree, create a tags file by

% ctags -R

This assumes Exuberant Ctags. The -R (or --recurse) option tells ctags to recurse into directories.

Then, set the tags option in vimrc as:

set tags=tags;

The last semicolon is the key here. When Vim tries to locate the 'tags' file, it first looks at the current directory, then the parent directory, then the parent of the parent, and so on.

This setting works nicely with 'set autochdir'. You need +path-extra feature for this tip.

References

Comments

You can also tag help/man files, and access it from Vim with commands like these in vimrc:

au FileType perl set tags^=$DOC/perl/tags
au FileType cpp set tags^=$DOC/cpp/tags