in reply to Re: Jumping through perl modules with vim
in thread Jumping through perl modules with vim
But "Another thread" told me if I set tags=path/to/tagfile value on vim, this is completly needless. "Another thread" was also good for me because I forgot the key for jump Ctrl+], back Ctrl+T. It was very helpful for me.#make tags file find ./ | xargs pltags.pl #replace ./ with fullpath ...space character of [] is tab... cat tags | sed 's^[ ]\./^[ ]'`pwd`'/^' > .buff mv .buff tags #create symlink find . -type d -exec ln -s `pwd`/tags {}/tags \;
|
|---|