How to quit vim
20 Oct 2020 | vimVim has multiple modes. You normally insert text in the Insert
mode. Normal
mode is where you move around and give commands to vim.
Esc
will take you to normal mode(usually). You can enter a command starting with a :
. Quit vim with the below command:
<Esc>:qa!
q
- quita
- all!
- force do the operation. This will quit all the buffers including the unsaved ones.