First we will talk about jumps in vim. Very useful for <a class="zem_slink freebase/en/navigation" title="Navigation" rel="wikipedia" href="http://en.wikipedia.org/wiki/Navigation">navigation and jumping around the vim. The jumps are commands that lets you jump from one location to another location, like {{ or [[ and so on … From the help file of vim
A ”jump” is one of the following commands: ”’”, ”`”, ”G”, ”/”, ”?”, ”n”,
”N”, ”%”, ”(”, ”)”, ”[[”, ”]]”, ”{”, ”}”, ”:s”, ”:tag”, ”L”, ”M”, ”H” and
the commands that start editing a new file. If you make the <a class="zem_slink freebase/en/cursor" title="Cursor (computers)" rel="wikipedia" href="http://en.wikipedia.org/wiki/Cursor_%28computers%29">cursor ”jump”
with one of these commands, the position of the cursor before the jump is
remembered. You can return to that position with the ”’’” and ”“” command,
unless the line containing that position was changed or deleted.
Continue reading