When I use Vim’s help, I usually forget how to jump to the links. So I write the tips down to keep mind in them.
The links in Vim' help is not really links, they are tags. Following shortcut will simplely jump into tags and jump back.
Follow the link(jump to the link) | Ctrl-] |
---|---|
Jump back previous location | Ctrl-t or Ctrl-o |
Also you can jump to a specific subjects(tags) by using :ta {subjects}
" instead of Ctrl-].
If you want to know more about using Vim’s help, you can open your vim, and type :h help
. Use search and jump tips to fly inside it!