立即关闭 Vim 中的所有视口(分屏)
当我使用 Vim 时,我倾向于以各种方式分割屏幕,但是当我想关闭编辑器时,我必须单独关闭每个分割。有没有一种方法可以一次性关闭所有拆分,无论我打开了多少个拆分?
When I use Vim I tend to split my screen in various ways, but when I want to close the editor I have to close each split separately. Is there a way to close all the splits at one regardless of how many splits I have open?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
使用
:qa
表示“全部退出”。如果您有未保存的缓冲区,则必须添加一个感叹号:
:qa!
。Use
:qa
for "quit all".If you have unsaved buffers you'll have to add a bang:
:qa!
.如果您还想保存所有拆分,请输入
:wqa
If you want to save all the splits as well type
:wqa
如果我理解正确的话,
:qall
就是你想要的。If I understand correctly,
:qall
is what you want.已经提到
:qa
就是你想要的。因为我(曾经)*经常想要这个,所以我将它们添加到 我的
.vimrc
:* 自从我发现 qbuf 插件。
It has already been mentioned that
:qa
is what you want.Because I (used to)* want this so often, I have added these to my
.vimrc
:* I don’t work much with splits any more since I found the qbuf plugin.