Horje
how to exit vim Code Example
how to exit vim
#Press 'Esc' to change from Edit Mode to Command Mode
#Exit
:q
#Force quit without saving
:q!
#Save file and quit
:wq
Source: itsfoss.com
how to exit vim
Reboot your computer
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
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
Source: devhints.io




Shell

Related
flutter sdk path mac Code Example flutter sdk path mac Code Example
how to reset network on ubuntu 20.04 Code Example how to reset network on ubuntu 20.04 Code Example
git add tag Code Example git add tag Code Example
ubuntu remove all folders but keep some Code Example ubuntu remove all folders but keep some Code Example
linux start simple http server Code Example linux start simple http server Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11