且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

在 Vim 中快速从垂直分割切换到水平分割

更新时间:2023-10-22 14:06:22

Vim 邮件列表说(重新格式化以提高可读性):

Vim mailing list says (re-formatted for better readability):

改变两个垂直分割水平分割的窗口

To change two vertically split windows to horizonally split

Ctrl-w t Ctrl-w K

水平到垂直:

Ctrl-w t Ctrl-w H

说明:

Ctrl-w t 使第一个(左上)窗口成为当前窗口

Ctrl-w t makes the first (topleft) window current

Ctrl-w K 将当前窗口移动到最顶部的全角

Ctrl-w K moves the current window to full-width at the very top

Ctrl-w H 将当前窗口移动到最左边的全高

Ctrl-w H moves the current window to full-height at far left

注意 t 为小写,K 和 H 为大写.

Note that the t is lowercase, and the K and H are uppercase.

此外,只有两个窗口,似乎您可以删除 Ctrl-w t 部分,因为如果您已经在仅有的两个窗口之一,将其设为当前有什么意义?

Also, with only two windows, it seems like you can drop the Ctrl-w t part because if you're already in one of only two windows, what's the point of making it current?