I installed vim 7.2 and ctags 5.8 and created a tag file using "ctags -R / foopath".
I have many methods that are called with the same name in several classes, so if I put the cursor in the function that calls and I run ": tag", it shows the first of the listed tags. If I execute ": tn" several times, I will finally find a method.
So my question is: is there a way to show directly the path where the class is located that contains the correct method that I am calling?
source
share