Vim
Love it or hate it, most distros have it installed. It's best to know at least how to edit files, and exit. Knowing how to exit vi is one of life's greatest mysteries.
Last updated
Love it or hate it, most distros have it installed. It's best to know at least how to edit files, and exit. Knowing how to exit vi is one of life's greatest mysteries.
Last updated
Not much here yet...please feel free to contribute at my GitHub page.
All commands must be run from Command Mode (unless otherwise specified).
Command | Description |
| Return to Command Mode. |
| Enter insert (normal text edit) mode. |
| Delete a character. Type a number first to delete that many characters. |
| Delete a whole line. Type a number first to delete that many lines. |
| Yank (copy) a whole line. Type a number first to yank that many lines. |
| Put (paste) contents of clipboard. |
No really, exiting vi, vim, etc. is quite simple. [esc] :q!
will get you out every time, most of the time. Learning why or why not...takes a little bit longer.
If you need to save any changes you made to a file use [esc] :w
or [esc] :wq
to save changes and exit.
To clarify, that's the escape key, then colon w to write changes, or colon wq to write and quit.
If you need to exit without making changes (for example when you open a read-only file by accident) type [esc] :q!
Learn vim: vimtutor
vim plugins: fuzzy finder plugin ctrlp /// surround.vim
If you like this content and would like to see more, please consider buying me a coffee!