I use Vim in Screen. I run the command
vim <bigFolder>
I am in stuck, since it does not make sense to close each buffer by
:q
How can you close all active buffers in Vim, by one command inside Vim?
|
|
|
|||||||
|
|
The |
|||
will close all buffers except the one you are currently editing (the cursor is inside this buffer).
will also close modified buffers but these will become hidden buffers.
will lists all the buffers with their status (hidden, ...) Some help:
|
|||||||||||||||||||
|
|
This isn't exactly what you asked for, but the following may give a desired outcome. It:
Should you have more than 2000 buffers open, adjust accordingly. It you simply want to delete all buffers, |
|||
|
|
If you happen to get VIM completely stuck you should still be able to kill it from outside VIM.
So if I want to kill the VIM that's editing
This should work even inside screen |
|||
|
|