From b8eed82e84b4c86477747e37b45217ad810fcc98 Mon Sep 17 00:00:00 2001 From: 7histle Date: Thu, 31 Oct 2013 19:09:51 +0400 Subject: [PATCH] some new mov vim cmds --- cheatsheets/vim | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/cheatsheets/vim b/cheatsheets/vim index 10547d4..034c534 100644 --- a/cheatsheets/vim +++ b/cheatsheets/vim @@ -21,6 +21,9 @@ b previous start of word B previous start of whitespace-delimited word 0 start of line $ end of line +gg go to first line in file +G go to end of file + # Insertion # To exit from insert mode use Esc or Ctrl-C @@ -53,3 +56,6 @@ d{motion} delete text that {motion} moves over 50k moves 50 lines up 2dw deletes 2 words 5yy copies 5 lines + 42G go to line 42 + +