2011-11-17

Using vim coding program for a long time.
It's a very good tool "ctags" to work with vim when coding.

Create tags
#ctags -R *

Naming tags
#ctags -R * -f tagName

In vim, using below command to setting PATH of tags:
:set tags=./tags,../tags

or
:set tags=tags;

Add ; can recursive search tags from parent folder.

Show more