在Vim中,ctrl + w c​​trl + w的反义词是什么?

use*_*621 1 vim editor

ctrl+w ctrl+w 循环通过视口,但我如何反向?

假设我在vsplit中打开了3个缓冲区,反复做的ctrl+w ctrl+w就是1,2,3,1,2,3 ......如果我想去3,2,1,3,2,1,那怎么样...... .

_____________________________________________________________
|                   |                   |                   |
|                   |                   |                   |
|                   |                   |                   |
|         1         |         2         |         3         |
|                   |                   |                   |
|                   |                   |                   |
|                   |                   |                   |
|                   |                   |                   |
Run Code Online (Sandbox Code Playgroud)

Ing*_*kat 5

我们来试试吧:help CTRL-W_CTRL-W:

CTRL-W w
CTRL-W CTRL-W   Without count: move cursor to window below/right of the
                current one.  If there is no window below or right, go to
Run Code Online (Sandbox Code Playgroud)

现在请继续阅读......

CTRL-W W        Without count: move cursor to window above/left of current
                one.  If there is no window above or left, go to bottom-right
Run Code Online (Sandbox Code Playgroud)

虽然我更喜欢"定向" CTRL-W j(k,l,h尤其是当映射到快)的映射,<C-j>等等.