Tip #255: arbitrary tags for file names
tip karma |
Rating 4/1, Viewed by 477
|
created: |
|
June 4, 2002 22:24 |
|
complexity: |
|
basic |
author: |
|
Travis |
|
as of Vim: |
|
5.7 |
This definitely work on linux and there is probably some windows equivalent.
I've started working with tomcat and many many .jsp files. I find this trick to be very helpful.
find -name '*.jsp' -printf '%f\t%P\t1\n' |sort > jsp.tags
This will create a file called jsp.tags with tag entries for each .jsp file. Within Vim I use
:set tags+=jsp.tags
Now I can to simple :tag file.jsp to quickly switch b/w the many, many .jsp files.
One important note. The utility sort will use the value of LC_COLLATE to sort according to your
locale. This will give Vim issues. So try "LC_COLLATE=C sort" instead of plain "sort"
<<Using \%[] to easily match parts of a word. |
Opening current Vim file in your Windows browser >>
Additional Notes
|