How can I jump to to a function definition using vim? For example with Visual Assist, I can type Alt+g under a function and it opens a context menu lis
Use gd or gD while placing the cursor on any variable in your program.
gd
gD
more navigation options can be found in here.
Use cscope for cross referencing large project such as the linux kernel.