save vim file code example

Example 1: how to insert in vim and save

vim filename #open file in vim
//To insert text press i and you can start editing
//Press Esc key and type :wq to save a file AND exit
//Press Esc key and type :w to save WITHOUT exiting

Example 2: vi save and exit

//Save
:w
//Exit
:q

Example 3: how to save any changes in vi editor

#save changes in vi editor

by press i you can `Insert` anything. After finshing changes then press :(colon)
and type wq!

syntex : wq!

Explanation : The ex mode is an extension of command mode. To get into it, 
press Esc and then : (the colon). 
The cursor will go to the bottom of the screen at a colon prompt. 
Write your file by entering :w and quit by entering :q. 
You can combine these to save and exit by entering :wq. 
However, if you're finished with your file, it's generally more convenient to type Shift-z-z from command mode.

Example 4: vim save file

// Save a new file (if you have entered vim without first creating a file)
:w <filename>
// Save file and exit
:x

Example 5: how to save in vi editor

To save a file, you must first be in Command mode. Press Esc to enter Command mode, and then type :wq to write and quit the file. The other, quicker option is to use the keyboard shortcut ZZ to write and quit.Aug 20, 2019