Vimdiff में, मैं बाएँ और दाएँ पैन को कैसे स्विच करूँ?


22

जब मैं करता हूं vimdiff file2 file1, file2स्वाभाविक रूप से बाईं ओर और file1दाईं ओर जाता है।

कभी-कभी मुझे लगता है कि मैंने उन्हें गलत तरीके से गोल कर दिया, इसलिए मैं विम को छोड़े बिना उन्हें गोल करने में सक्षम होना चाहूंगा। क्या यह संभव है?

जवाबों:


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>rदो विकल्प होंगे।

केवल दो विंडो होने के कारण <c-w>kउन्हें स्विच कर दिया जाएगा और कर्सर को उस विंडो में छोड़ दिया जाएगा जहां वह स्विच से पहले था (यानी यदि स्विच से पहले फोकस की गई विंडो बाईं तरफ है, स्विच के बाद वह बाईं तरफ होगी)।

<c-w>x खिड़कियों को स्विच करेगा और कर्सर को स्विच्ड विंडो में ले जाएगा (यानी यदि बाईं तरफ फोकस की गई विंडो बाईं तरफ है)।

:help window-movingविंडोज़ aroud को स्थानांतरित करने के लिए अधिक आदेश देखें ।


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}

हालाँकि, ये कमांड विंडो के आकार को बदल सकते हैं, इसलिए इससे अवगत रहें।

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.