Vim: Close All Buffers But This One

前端 未结 13 2333
别那么骄傲
别那么骄傲 2020-12-22 15:04

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

13条回答
  •  粉色の甜心
    2020-12-22 15:56

    Try this

    bufdo bd
    

    bufdo runs command for all buffers

    http://vim.wikia.com/wiki/Run_a_command_in_multiple_buffers

提交回复
热议问题