NeoVim

  • Press to go back to Normal Mode.

Moving Around

  • moves cursor Left
  • moves cursor Right
  • moves cursor Down
  • moves cursor Up

Exiting NVim:

Steps:

  • Get to normal mode
  • :q!
    This quits the editor, discarding any changes made.
  • :wq
    This quits the editor, saving any changes made.
  • :qa!
    Exists all the open windows at once, discarding any changes.

Editing file:

Normal mode: - removes the character the cursor is on. - to append before the line. - to append after the line. - from start or middle of word to delete upto next space. - <d$> to delete from to the end of the line.