Table of Contents

Tutorial: browsing source code with vim

How to read source code with vim:

Finding fuction definition with ctag and vim

Find a tag:

  ta: function_name
  

Find partial name:

  ta: /^partname
  

Back to the last function:

  Ctrl + o
  
  :ts – shows the list.
  :tn – goes to the next tag in that list.
  :tp - goes to the previous tag in that list.
  :tf – goes to the function which is in the first of the list.
  :tl – goes to the function which is in the last of the list.

References