exit and save in vim code example

Example 1: vi save and exit

//Save
:w
//Exit
:q

Example 2: vi quit and save

# ESC to start command prompt, then
:q!		# exit vi without saving
:wq!	# exit vi with saving (! means exiting even if file is read only)

Example 3: vim save and quit

// Save & exit
:wp

Example 4: 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

Tags:

Misc Example