Learning Basic VI commands and shortcuts
It might useful for Linux beginners. Command Mode Default mode of vim Move by character: Arrow Keys, h, j, k, l Move by word: w, b Move by sentence: ), ( Move by paragraph: }, { Jump to line x: xG Jump to end: G Insert mode i begins insert mode at the cursor A append to end of line I insert at beginning of line o insert new a line (below) O insert new line (above Ex Mode o :w writes (saves) the file to disk o :wq writes and quits o :q! quits, even if changes are lost Manipulating Text change (c) cut (d) yank (y) paste (p) without target Line in Action Line as in action Letter l Word w Sentence ahead ) Sentence behind ( Paragraph above { Paragraph...