Vimdiffでは、左右のペインを切り替えるにはどうすればよいですか?


22

私がそうするときvimdiff file2 file1file2自然に左とfile1右に行きます。

ときどき間違った方法でそれらを配置したことに気づくので、Vimを離れることなくそれらを切り替えられるようにしたいと思います。それは可能ですか?

回答:


23

Ctrlw- を使用できますx。から:he CTRL-W_x

CTRL-W x                                            CTRL-W_x CTRL-W_CTRL-X
CTRL-W CTRL-X   Without count: Exchange current window with next one.  If there
                is no next window, exchange with previous window.
                With count: Exchange current window with Nth window (first
                window is 1).  The cursor is put in the other window.
                When vertical and horizontal window splits are mixed, the
                exchange is only done in the row or column of windows that the
                current window is in.

11

あなたは他のウィンドウを切り替えるうとして、<c-w>xまたは<c-w>r2つのオプションがあります。

2つのウィンドウのみを開く<c-w>kと、ウィンドウが切り替わり、カーソルが切り替え前のウィンドウに残ります(つまり、切り替え前の場合、フォーカスされたウィンドウは左側にあり、切り替え後は左側になります)。

<c-w>x ウィンドウを切り替え、切り替えられたウィンドウ内でカーソルを移動します(つまり、フォーカスされたウィンドウが左側にある場合は左側に残ります)。

:help window-movingウィンドウを移動するためのその他のコマンドを参照してください。


4

次のコマンドはCtrlw- よりはるかに直感的ですx

:help CTRL-W_K

The following commands can be used to change the window layout.  For example,
when there are two vertically split windows, CTRL-W K will change that in
horizontally split windows.  CTRL-W H does it the other way around.

                        *CTRL-W_K*
CTRL-W K    Move the current window to be at the very top, using the full
        width of the screen.  This works like closing the current
        window and then creating another one with ":topleft split",
        except that the current window contents is used for the new
        window.

                        *CTRL-W_J*
CTRL-W J    Move the current window to be at the very bottom, using the
        full width of the screen.  This works like closing the current
        window and then creating another one with ":botright split",
        except that the current window contents is used for the new
        window.

                        *CTRL-W_H*
CTRL-W H    Move the current window to be at the far left, using the
        full height of the screen.  This works like closing the
        current window and then creating another one with
        ":vert topleft split", except that the current window contents
        is used for the new window.
        {not available when compiled without the |+vertsplit| feature}

                        *CTRL-W_L*
CTRL-W L    Move the current window to be at the far right, using the full
        height of the screen.  This works like closing the
        current window and then creating another one with
        ":vert botright split", except that the current window
        contents is used for the new window.
        {not available when compiled without the |+vertsplit| feature}

ただし、これらのコマンドはウィンドウのサイズを変更する可能性があるため、注意してください。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.