vote up 2 vote down star

If I have 10 tabs opened, I have to close each one using ":q" separately. How can I close them all at once?

flag
Edited your post into a question, and copied your answer down below. – Simucal Feb 4 at 6:57
@Simucal: Thanks! – vito Feb 4 at 8:06

5 Answers

vote up 6 vote down check

Shortest/simplest/fastest way would be:

:qa

To save work in all tabs and quit:

:wqa
link|flag
vote up 1 vote down
:qall

This closes all tabs and open buffers.

link|flag
vote up 0 vote down

That can be done with the following command (in normal or escape mode):

:tabdo :q

"tabdo" apparently executes the command for all the open tabs.

link|flag
Note, this isn't my answer. I moved this out of the original non-question down to here. – Simucal Feb 4 at 7:00
vote up 1 vote down

Adding to what fuentesjr said:

:qa!

Will force quit all tabs, if you don't care about saving.

link|flag
vote up 2 vote down

I often use :tabo to close all other tabs.

link|flag
“close all other tabs” is much faster achieved by “:on” (for “only”, i.e. “the only window to show”). :) – Bombe Feb 4 at 8:01
@CMS: This is a nice one! @Bombe: ":on" didn't work for me. – vito Feb 4 at 8:08

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.