Wie schalte ich in Vimdiff den linken und den rechten Bereich um?


22

Wenn ich das tue vimdiff file2 file1, file2geht das natürlich links und file1rechts.

Manchmal stelle ich fest, dass ich sie falsch herum platziert habe, also möchte ich sie umschalten können, ohne Vim zu verlassen. Ist das möglich?

Antworten:


23

Sie können Ctrlw- verwenden x. Von :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

Da würden Sie jedes andere Fenster wechseln, <c-w>xoder es <c-w>rgibt zwei Möglichkeiten.

Wenn nur zwei Fenster geöffnet sind, <c-w>kwerden sie umgeschaltet und der Cursor bleibt in dem Fenster, in dem er sich vor dem Umschalten befand (dh wenn sich das fokussierte Fenster vor dem Umschalten links befindet, befindet es sich nach dem Umschalten links).

<c-w>x schaltet die Fenster um und bewegt den Cursor im umgeschalteten Fenster (dh das fokussierte Fenster bleibt links, wenn es links war).

Siehe :help window-movingfür mehr Befehl zu bewegen Fenster aroud.


4

Ich finde die folgenden Befehle viel intuitiver als 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}

Diese Befehle können jedoch die Größe des Fensters ändern.

Durch die Nutzung unserer Website bestätigen Sie, dass Sie unsere Cookie-Richtlinie und Datenschutzrichtlinie gelesen und verstanden haben.
Licensed under cc by-sa 3.0 with attribution required.