vi or vim (Vi IMproved) is text editor or a programmers text editor. You can edit programs or configuration files on the Linux/Unix server. Vim is upwards compatible to Vi. This page explains how to save a file in Vim or vi and quit the editor under Linux or Unix-like systems.
| Tutorial details | |
|---|---|
| Difficulty level | Easy |
| Root privileges | No |
| Requirements | Linux or Unix terminal |
| Category | Text Editor |
| OS compatibility | BSD • Linux • macOS • Unix • WSL |
| Est. reading time | 4 minutes |
Vim Save And Quit The Editor Command
The procedure to save a file in vim / vi and quit the editor is as follows:
- Open the terminal application in Linux or Unix
- Next, open a file in vim / vi, type: vim filename
- To save a file in Vim / vi, press Esc key, type :w and hit Enter key
- One can save a file and quit vim / Vi by pressing Esc key, type :x and hit Enter key
Let us see all commands and examples in details.
How to open a file in Vim / Vi
You can start vi/vim by typing the following command:
$ vim file
$ vi file
$ vim [options] filename
$ vim helloworld.sh
Understanding vim modes
When we start vim/vi text editor, we are in normal mode. This mode allows use to use vim commands and navigate around the file as per our needs. In order to edit text, you need to enter the insert mode by pressing i key. This way, we can edit our program or configuration files such as /etc/nginx/nginx.conf.
Of course, you can go back to normal mode by pressing Esc key again.
How to save and quit the vi or vim text editor
To save and quit the vi or vim editor with saving any changes you have made:
- If you are currently in insert or append mode, press Esc key.
- Press : (colon). The cursor should reappear at the lower left corner of the screen beside a colon prompt.
- Enter the following command (type :x and press Enter key):
:x
OR
:x!
OR
:wq!
- Press ENTER key
- This will quit the editor, and all changes you have made to the document will be saved to the file.
Use x to save a file and exit:
How to trash all changes in vi/vim
If you do not want to save any changes, first press Esc key. To exit Vim without saving changes press :q! followed by ENTER key.
Getting more help about vim commands
Want to learn vim text editor? Start the vim tutor by typing the following command at the Linux, macOS, *BSD, and Unix-like system. For example:
$ vimtutor
$ vimtutor {language}
$ vimtutor it
$ vimtutor fr

vimtutor in action
$ man vim
$ man vi
$ vim --help
Summary of vim/vi commands
| Command | Description |
|---|---|
| Press the ESC key Type :q! Press the ENTER key |
Exit vim without saving changes i.e. discards any changes you made. |
| Press the ESC key Type :wq Press the ENTER key |
Save a file and exit. |
| Press the ESC key Type :x Press the ENTER key |
Save a file and exit. |
Are “vi” and “vim” text editor commands different?
Vi and Vim are two different text editors. Vi is an older text editor created in the 1970s, while Vim is a newer editor that builds on Vi with additional features and improvements. Bill Joy is the original creator of the vi editor. Tim Thompson is the original creator of vim. Here are some of the key differences between vi and vim text editors:
- Vim offers a wider range of features than vi, including syntax highlighting, code folding, and the ability to use multiple windows and tabs.
- Additionally, Vim can be customized to a greater extent through plugins and configuration files.
- In terms of efficiency, Vim is generally faster than vi, particularly when dealing with large files, thanks to its optimized text editing engine.
- Choose vi for simplicity, or vim for flexibility and customization, when selecting a text editor. On most moder Linux distro vi is just symbolic link to vim.
Conclusion
You learned how to save a file in vim and exit the text editor using various vim commands. See the vim site and the traditional vi site here, or the following pages for more information.
- How To Exit From top Command In Linux / Unix / BSD / OS X
- How To Exit Vim Text Editor Command
- Vi / Vim: Save And Quit The Editor Command
- How to reload .vimrc file without restarting vim on Linux/Unix
🥺 Was this helpful? Please add a comment to show your appreciation or feedback.


Got stuck in vim, you saved my day on Red Hat Linux.
vim put me in jail and the year is 2017.
it is 2022 and I’m stuck on RHEL 8 while following an Apache server tutorial.
I was wondering how to get out of this hell and lo, it was pressing escape and typing :q!.
Hah.
Yeah, the vim editor put me in jail too, and the year is 2018. Help me, Mr. Nix Kenobi. You are my only hope.
Hi,
thanks
w!= save without exiting
q!= exit without saving
To save and quit:
If you are currently in insert or append mode, press Esc key.
Press: (semi-colon) The cursor should reappear at the lower left corner of the screen beside a colon prompt.
Enter the following command (type wq! and press Enter key).
:)
Press: (colon) The cursor should reappear at the lower left corner of the screen beside a colon prompt.
colon is right.
none of these commands are working
Hit the ‘esc’ key and it will take you out of the cursor mode and give you a cursor at the lower left hand of the screen. Now enter wq! and it will save and quit.
Worked for me (Ubuntu 16.4). Thanks
Thanks for sharing knowledge!
Worked just perfectly!
worked for me too on Ubuntu. thank you!
The theme become so popular in the entire Www, so I’ve created fun page
Can’t believe I clicked your link :)
Thx. It helped me.
thanks so much
No problem.
no work
:wq
:wq!
wq!
Stop using :wq! to save and exit!
:wq is save and quit, the ! tells it to ignore errors and exit. This could potentially leave you with exiting a file unsaved due to an error.
:q! is exit without saving
:wq is “save and exit”
Good to know. thank you <3
I have work peacefully on my Mac Mini as I started vi by accident while reading uni docs. Hehe.. and then I was like, WTF? How do I get out of this thingy? So Google sent me here, and you saved me like God showing mercy on the poor soul.
I am learning vim for college credit. May I suggest full tutorial about vim?
Press the Esc key.
Press : (colon) to open the command prompt n the bottom left corner of the vim window.
Type x after the colon and hit the Enter. This will save the changes and exit.
Initially I was searching for instructions on how to exit vim, but I ended up learning some historical background information. I discovered that “vi” and “vim” are two distinct applications. Ultimately, the best text editor for me depends on my needs and preferences. I started learning vim for Debian server and my daily text editor is PyCharm :)
Charlene, That is so nice to share all information. Thank you.
Excellence and very useful for first time user. thank u!