Skip to content

Instantly share code, notes, and snippets.

View ssjr's full-sized avatar

sérgio ssjr

  • Porto Alegre - RS/Brasil
View GitHub Profile
@filipelinhares
filipelinhares / vim.md
Last active July 22, 2024 12:06
Vim basic commands

Vim basic commands

A

  • a Enter into insert mode after the character your cursor is on.
  • A Enter into insert mode at the end of the current line.

B

  • b Move cursor to first character of previous word.
  • B Move cursor to first character of previous non-blank series of characters.
  • Ctrl+b Scroll page backwards (move up in the file).