Hi,
On 3/7/07, Zarko Coklin <[EMAIL PROTECTED]> wrote:
Thanks to all who responded promptly. Special thanks
to Michael Wookey. His solution is the most elegant
one. It is based on upward search (which I did not
know about). Therefore, setting following in .vimrc
really did trick for me:
"Make sure semicolon is there. Used for upward search
set tags=tags;
Note that with the above setting, Vim will search for the 'tags'
file from the current directory. If you want Vim to search
for the 'tags' file from the directory of the current file,
then you have to set it to "./tags". To do both and use the
first found tags file, you can use:
set tags=./tags;tags;
- Yegappan