Skip to content

Instantly share code, notes, and snippets.

@duythinht
Created September 2, 2014 13:28
Show Gist options
  • Save duythinht/3718c44e5c1f1e3219e7 to your computer and use it in GitHub Desktop.
Save duythinht/3718c44e5c1f1e3219e7 to your computer and use it in GitHub Desktop.
VIM moving
# Go to line 3
3 G
# Delete from line 3 to 6
3 G
d 6 G
# copy to clipboard
" + Y
# paste from clipboard
" + P
# Go to 3 words as begin
3 w
# Go to 3 words and end
3 e
#New line
o
# Go back 3 words
3 b
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment