Dans Vimdiff, comment basculer les volets gauche et droit?


22

Quand je le fais vimdiff file2 file1, file2va naturellement à gauche et file1à droite.

Parfois, je trouve que je les ai mis dans le mauvais sens, alors j'aimerais pouvoir les changer sans quitter Vim. Est-ce possible?

Réponses:


23

Vous pouvez utiliser Ctrlw- x. De :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

Comme vous changeriez n'importe quelle autre fenêtre, <c-w>xou vous avez <c-w>rdeux options.

Le fait d'avoir seulement deux fenêtres ouvertes <c-w>kles commutera et laissera le curseur dans la fenêtre où il était avant le commutateur (c'est-à-dire si avant le commutateur, la fenêtre focalisée est à gauche, après le commutateur, elle sera à gauche).

<c-w>x changera les fenêtres et déplacera le curseur dans la fenêtre commutée (c'est-à-dire que la fenêtre focalisée reste à gauche si elle était à gauche).

Voir :help window-movingpour plus de commandes pour déplacer les fenêtres.


4

Je trouve les commandes suivantes beaucoup plus intuitives que 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}

Ces commandes peuvent toutefois modifier la taille de la fenêtre, alors soyez conscient de cela.

En utilisant notre site, vous reconnaissez avoir lu et compris notre politique liée aux cookies et notre politique de confidentialité.
Licensed under cc by-sa 3.0 with attribution required.