如何设置窗口分割的高度?

Ion*_*zău 2 vim

:sp 水平分割当前窗口为两个.

如何设置新窗口的高度

我想象的是:

:sp --width=30
Run Code Online (Sandbox Code Playgroud)

Mic*_*ski 7

通过前面的:split数字,您可以设置高度:

" Split a 10-line height window above:
:10split

" Or to open the new viewport below the current
:below 10split
Run Code Online (Sandbox Code Playgroud)

来自:help split:

:[N]sp[lit] [++opt] [+cmd]                              :sp :split
                Split current window in two.  The result is two viewports on
                the same file.  Make new window N high (default is to use half
                the height of the current window)
Run Code Online (Sandbox Code Playgroud)