Vim Tips Wiki
(Change <tt> to <code>, perhaps also minor tweak.)
(:wqa as an alternative to :xa)
Tags: Visual edit apiedit
Line 16: Line 16:
 
|-
 
|-
 
|<code>:xa</code> || exit all (save all changes and close Vim)
 
|<code>:xa</code> || exit all (save all changes and close Vim)
  +
|-
  +
|<code>:wqa</code>
  +
|same as <code>:xa</code>
 
|-
 
|-
 
|<code>:qa</code> || quit all (close Vim, but not if there are unsaved changes)
 
|<code>:qa</code> || quit all (close Vim, but not if there are unsaved changes)

Revision as of 18:24, 10 August 2017

Tip 652 Printable Monobook Previous Next

created 2004 · complexity intermediate · author Andreas Berg · version 6.0


Vim can open multiple files, each in its own buffer. Here is how to save all changes and continue working, or save all changes and exit Vim. It is also possible to quit all (discard changes).

:wa write all changed files (save all changes), and keep working
:xa exit all (save all changes and close Vim)
:wqa same as :xa
:qa quit all (close Vim, but not if there are unsaved changes)
:qa! quit all (close Vim without saving—discard any changes)

The :wa and :xa commands only write a file when its buffer has been changed. By contrast, the :w command always writes the current buffer to its file (use :update to save the current buffer only if it has been changed).

Warning: If you enter :qa!, Vim will discard all changes without asking "are you sure?".

See also

References

Comments