Skip to content

Instantly share code, notes, and snippets.

@mplodowski
Last active March 14, 2018 07:11
Show Gist options
  • Select an option

  • Save mplodowski/f5158fed1d223f8ddd432fb5c617c401 to your computer and use it in GitHub Desktop.

Select an option

Save mplodowski/f5158fed1d223f8ddd432fb5c617c401 to your computer and use it in GitHub Desktop.
VIM commands

Modes

i - insert mode
v - visual mode
V - visual line mode

Keys

h - cursor left
l - cursor right
j - cursor down
k - cursor up
d - delete
u - undo
y - copy
p - paste
yy - copy line
. - last command

Commands

:w - write
:q - quit
:x - write and quit
:pwd - current workind dir
/{search} - search for a string (n - for next occurence)
:e . - current working directory

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment