running VIM-7.0.237 on CentOS-5.6. I have a large C code base with tags generated with ctags-5.6, there are functions with the same name defined in several places and I remember back when I used vim-6.3, I could jump over those multiple definitions easily -- VIM used to suggest me what definition I want to jump at. Now with vim-7 it gives me only first.

Is there a way to have a old-style behavior? Thanks.

PS. I have a default VIM configuration.

link|improve this question

44% accept rate
In case you didn't know, :tn goes to the next definition. I only recently started using Vim so never considered it working differently. – dash-tom-bang Aug 19 '11 at 17:12
Thanks for advices. I normally used Ctrl-] to follow the tag and 'vim' suggested me a list of possible options to choose from. Perhaps the behavior of Ctrl-] in the new version has changed ? – Mark Aug 19 '11 at 18:44
feedback

2 Answers

up vote 0 down vote accepted

Use g] (g$ on french azerty keyboards) to display a list of definitions.

link|improve this answer
thanks this also works. How can see what function is mapped on a specific key sequence? – Mark Aug 22 '11 at 13:41
Try :map without arguments to get a list of every single mapping available. – romainl Aug 22 '11 at 16:47
feedback

You can either precede the command with a count to jump to a specific match or use
:ts {identifier}. It will list the tags available for the given identifier.

You may find the ctrlrctrlw command (et similars) useful to insert the word under cursor. A map may help you with it.

nnoremap \] :ts <c-r><c-w><CR>
link|improve this answer
1  
Could you use <cword> in place of the control keys? – dash-tom-bang Aug 19 '11 at 17:11
Yep, edited. Thanks. Just missed it. – sidyll Aug 19 '11 at 17:13
I tried 'nnoremap' with cword, but vim complains on cword. Here is my line from .vimrc: nnoremap ^] :ts <cword><CR> Although ^R^W instead works. – Mark Aug 19 '11 at 18:49
1  
@Mark: Hmm, the <cword> thing is an command line expansion, so it might be better to keep it in command line things indeed. I rolled back to version 1 of the answer. – sidyll Aug 19 '11 at 19:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.