Btrie BlogGrok VIMComments

Most of the information below (along with more beginner info) can be found in

:help help-summary

Vim’s help is accessible through the built-in command :help (and can be searched with :helpgrep).

Tab completion with the right prefixes makes it pretty quick to find what you’re looking for
if you already know something about the command:

  • : is used for cmdline/Ex-mode commands

    :help :help
  • ‘ is used for options

    :help 'incsearch'
  • No prefix for normal mode commands

    :help CTRL-]
  • i for insert mode

    :help i_CTRL-[
  • v for visual mode

    :help v_CTRL-]