I'm browsing some C code. I ran into a variable that is defined in a header file. How can i move my cursor under this variable and jump to see its definition ?
Thanks
|
I'm browsing some C code. I ran into a variable that is defined in a header file. How can i move my cursor under this variable and jump to see its definition ? Thanks |
||||
|
|
|
Achieving this in vim can be done by using a tag file. You can generate a tag file with the cd in the directory of your project and run:
This will generate a file named Vim knows how to use these files to get you to the correct location. When your cursor is over a symbol, just hit See Vim can use multiple tag files at the same time. For example you could have one for your project and one for each library you use. For this, just generate the various tag files and add them in the
|
|||||||||||
|