cheat:vim --- tags: [ vim ] --- # File management :e reload file :q quit :q! quit without saving changes :w write file :w {file} write new file :x write file and exit # Movement k h l basic motion j w next start of word W next start of whitespace-delimited word e next end of word E next end of whitespace-delimited word 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 gk move down one displayed line gj move up