Vim Tips Wiki
(Remove html character entities)
m (Correct typo +path-extra => +path_extra)
Tag: Visual edit
 
(5 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{review}}
 
 
{{TipImported
 
{{TipImported
 
|id=804
 
|id=804
 
|previous=803
 
|previous=803
 
|next=805
 
|next=805
|created=October 12, 2004
+
|created=2004
 
|complexity=intermediate
 
|complexity=intermediate
 
|author=Dubhead
 
|author=Dubhead
 
|version=6.0
 
|version=6.0
 
|rating=94/37
 
|rating=94/37
|category1=
+
|category1=Navigation
 
|category2=
 
|category2=
 
}}
 
}}
Line 17: Line 16:
 
</pre>
 
</pre>
   
This assumes Exuberant Ctags. The -R (or --recurse) option tells ctags to recurse into directories.
+
This assumes [http://ctags.sourceforge.net/ Exuberant Ctags]. The -R (or --recurse) option tells ctags to recurse into directories.
   
 
Then, set the tags option in [[vimrc]] as:
 
Then, set the tags option in [[vimrc]] as:
Line 24: Line 23:
 
</pre>
 
</pre>
   
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.
+
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', because then Vim's current directory is the same as the directory of the file. If you do not like using 'autochdir' but want the same upward search, use:
   
  +
<pre>
This setting works nicely with 'set autochdir'. You need <tt>+path-extra</tt> feature for this tip.
 
  +
set tags=./tags;
  +
</pre>
  +
  +
Here, the leading "./" tells Vim to use the directory of the current file rather than Vim's working directory.
  +
  +
Regardless of the specific search used, you need the <code>+path_extra</code> feature for this tip.
   
 
==References==
 
==References==
*{{help|file-searching}}
+
* {{help|file-searching}}, which also gives details about adding "stop directories" to end the upward search
   
 
==Comments==
 
==Comments==
 
You can also tag help/man files, and access it from Vim with commands like these in vimrc:
 
You can also tag help/man files, and access it from Vim with commands like these in vimrc:
 
 
<pre>
 
<pre>
 
au FileType perl set tags^=$DOC/perl/tags
 
au FileType perl set tags^=$DOC/perl/tags

Latest revision as of 16:49, 27 May 2014

Tip 804 Printable Monobook Previous Next

created 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', because then Vim's current directory is the same as the directory of the file. If you do not like using 'autochdir' but want the same upward search, use:

set tags=./tags;

Here, the leading "./" tells Vim to use the directory of the current file rather than Vim's working directory.

Regardless of the specific search used, you need the +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