Excerpts from Bram Moolenaar's message of Sat Sep 25 13:16:32 +0200 2010: > Vim supports tag lines up to 512 characters. If you want you can > recompile Vim and define LSIZE in src/vim.h to a larger number.
Its very common for compilers to truncate names which are longer than XX characters. They are very likely to be uniq. So recompiling Vim is one option. Applying a regex script to your tag files shortening the keys could be another one? But the real fix is making Vim shorten the key its looking for as well. The implementation could look like this: try match regex on tag name. If regex fails after matching 512 characters still consider this being a match because tags are only supported up to that length. Then the tags would be found even if they are longer than 512 characters. Marc Weber -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php
