how to save in vim 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: exiting vim

Press Esc key: This is very important, because you must exit the edit mode first before typing the exit command(s). Next, you can type one of the following commands:
:q (yes, the colon is included in the command) – This will quit the editor
:q! – Quit Vim without saving the data file
:wq – Save the file and exit Vim
And then press the Enter key

Example 3: vim save and quit

// Save & exit
:wp

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

Example 6: edit in vim

Press i letter on your keyboard to start editing (Insert Mode). When youre done press the ESC key to exit insert mode