Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I close all buffers in Vim except the one I am currently editing?

share|improve this question
don't forget to put the answer as solved :) – ykatchou Dec 28 '10 at 10:26
1  
I fount this link – klokop Sep 12 '12 at 7:37
Interesting! Thanks! – Rafid Sep 12 '12 at 11:21

2 Answers

up vote 8 down vote accepted

You could use this script from vim.org:

http://www.vim.org/scripts/script.php?script_id=1071

Just put it to your .vim/plugin directory and then use :BufOnly command to close all buffers but the active one. You could also map it elsewhere you like in your .vimrc.

share|improve this answer
Thanks very much! – Rafid Dec 28 '10 at 10:22

By using

:on[ly][!]

and

:h only
share|improve this answer
This closes windows, not buffers. – ZyX Sep 8 '12 at 12:17
Ah yeah, okay. Buffers and windows confuse me. – klokop Sep 12 '12 at 7:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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