code-navigation

Vim modules for navigating C++ code base?

Besides ctags / cscope, what are good vim plugins for navigating C++ code base? Ideally, when my cursor is on a variable name, I would like to be able to know: what is the class of this variable, what functions can I call on this varaible, jump to the class of this varaible ... and do this across multiple namespaces. What tools do yo...

Visual Studio - easy way to bring up type definition as source code

Oftentimes I want to bring up a system class in a source view, so that I can browse the properties and methods exposed by the class. Below is the screenshot of what I mean: Usually I do this by selecting the class name and pressing F12 (or right click>Go To Definition). However, if I haven't got it anywhere ready, i have type it up an...

How to move forward in VIM Tag Searching and Navigation?

Ctrl + ] is to jump to the definition. Ctrl + T is to go back. What's the opposite of Ctrl + T? ...