Skip to content

Instantly share code, notes, and snippets.

@AaronPhalen
AaronPhalen / basic_vim_commands.md
Last active December 14, 2023 17:02
Useful Vi Editor Commands

Author: Aaron Phalen | Twitter: @aaron_phalen | Email: [email protected]

#Useful Vi Editor Commands

  1. :w --> save to a file
  2. :q --> quit out of editor file
  3. :q! --> quit out of editor without saving file
  4. w --> move one word forward at a time in file
  5. b --> move one word back at a time in file
  6. :wq --> save file and quit editor