Answers for "hwo to exit vim"

59

exit vim

#Press 'Esc' to change from Edit Mode to Command Mode
#Exit
:q
#Force quit without saving
:q!
#Save file and quit
:wq
Posted by: Guest on April-06-2020
1

vim exit

:qa			Close all files
:qa!		Close all files, abandon changes
:w			Save
:wq / :x	Save and close file
:q			Close file
:q!			Close file, abandon changes
ZZ			Save and quit
ZQ			Quit without checking changes
Posted by: Guest on November-18-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language