Mikalai Chaly wrote: > Hello, vim developers. > > I'm trying to figure out how "jump to tag" function can be improved. > In C# project with multiple overridden virtual methods original Ctrl-] > behaviour is not very useful. > > So, I've reviewed todo.txt file and found the following action item marked > with "8": > > "Use a mechanism similar to omni completion to figure out the kind of tab > for CTRL-] and jump to the appropriate matching tag (if there are > several)." > > Is there a way to find out who is working on this, if any? I'd like to help > to implement > and/or test this functionality. > > Sincerely, > Mikalai
I'm not aware of anybody working on it. In my ~/.vimrc, I have the following map... noremap <c-]> g<c-]> ... which helps a bit. When CTRL-] has multiple matches (overloaded functions, derivation...) it will show a list of all matches at let you select the one you want, rather than jumping to the first match. See :help g_CTRL-] Regards -- Dominique --~--~---------~--~----~------------~-------~--~----~ You received this message from the "vim_dev" maillist. For more information, visit http://www.vim.org/maillist.php -~----------~----~----~----~------~----~------~--~---
