Move adjacent tab to split?

前端 未结 2 1720
攒了一身酷
攒了一身酷 2021-02-02 06:51

Is there an easy way to move an adjacent tab in Vim to current window as a split?

While looking around I reached a mailing list discussion where someone said it\'s the r

2条回答
  •  我在风中等你
    2021-02-02 07:06

    The problem with your problem is that a tab is not tied to a specific buffer. You can have 10 windows with as many buffers in a tab so "moving a tab into a split" doesn't make much sense.

    What makes more sense is "show buffer x into a split" which can be done with

    :sb 
    

提交回复
热议问题