--- vi version 8 Sun Jun 22 02:04:13 +0000 2008
+++ vi version 9 Fri Jun 27 08:24:38 +0000 2008
@@ -1,22 +1,22 @@
Edit
dd delete line
yy p copy and past a line
Navigation
h j k l left, down, up right, one character/line at a time
w b e next word, back word, end of word
-$ end of line
-1G beginning of file
-G end of File
-0 beginning of line
+gg beginning of file
+GG end of File
+0 first column in a line
+^ beginning of line
$ end of line
File
:u undo
:q quit
:q! force quit
:wq write, quit
:/<string> Search for next occurrence of <string>
:?<string> Search for previous occurrence of <string>
:%s/<str_a>/<str_b>/g Replace all str_a with str_b in current buffer