Table of ContentsCONTENT

Table of Contents

Linux vim

Administrator
2022-10-09 / 0 Comments / 0 Liked / 17 Read / 1549 Words

How to quit vim

:q

//quit

:q!

//quit and do not save (:quit!)

:wq

//write and quit

:wq!

//write forcibly and quit (forcible)

:x

//write and quit (=:wq, save only when having changes)

:exit

//write and quit (=:x)

:qa

//quit all (:quitall)

:cq

//quit and do not save (despite mistakes)

0

Comment Section