how to exit from vim code example

Example 1: exit vim

#Press 'Esc' to change from Edit Mode to Command Mode
#Exit
:q
#Force quit without saving
:q!
#Save file and quit
:wq

Example 2: how to get out from vim editor

#how to get out from vim Editor (linux)

#Press 'Esc' to change from Edit Mode to Command Mode
#Exit
:q
#Force quit without saving
:q!
#Save file and quit
:wq

Example 3: close vim

wq – Save the file and exit Vim

Example 4: vim quit

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

Tags:

Misc Example