But how do you close VIM !!!!
I will show you some NOOB methods I discovered. You will see, the most classical ways to the most WTF! Have fun 😉
CONTENT
- Normal Mode
- Keyboard shortcuts
- Like an admin
- Like in Russia
- Docker
- Kubernetes
- ps-less
- Leaving VIM as a developer
- Python
- Ruby
- JavaScript
- GO
- in DEBUG mode
- Linux
- Mac
- Stack Overflow
- AWS
- Like real man
Normal Mode
The ESC (ESC) key must be pressed before typing the commands.
:quit
:q
:quit!
:q!
:wq
:wq!
:x
:exit
:qa
:cq
:q | quit without saving, this is the abbreviated version of:quit |
:q! | when you add the “! “it means force, so there we force the system to quit without saving. |
:wq | save and exit |
:wq! | forces the saving of the document and have close |
: x | save and close the document |

