Vim में स्क्रीन के टॉप / सेंटर / बॉटम पर करंट लाइन कैसे डालें?


118

वर्तमान में कर्सर जिस स्थान पर है उस लाइन को रखने के लिए कोई भी तेज नेविगेशन ट्रिक

  • स्क्रीन के ऊपर?
  • स्क्रीन का केंद्र?
  • स्क्रीन के नीचे?

जवाबों:


153

z<CR>या zt स्क्रीन के शीर्ष पर वर्तमान लाइन डालता है ( <CR>== Enter)

z.या zz स्क्रीन के केंद्र में वर्तमान लाइन डालता है

z-या zb स्क्रीन के नीचे करने के लिए वर्तमान लाइन डालता है

( z<CR>, z., और z-पहली गैर खाली कॉलम में कर्सर डालता है। zt, zzऔर zbवर्तमान स्तंभ में छोड़ देता है कर्सर)

Http://vimdoc.sourceforge.net/htmldoc/scroll.html पर या
विम प्रकार में स्क्रॉल करने के बारे में अधिक जानकारी:help scroll-cursor


14
आप zzइसके बजायz.
evilsoup

2
मैंने पहले नहीं सुना था z.। मुझे लगता है कि मैं एक डबल प्रेस के बजाय हिट करने के लिए दो अलग-अलग चाबियाँ रखना पसंद करता हूं। आप समांतर किस्ट्रोक्स समवर्ती बना सकते हैं, इसलिए जब तक वे सही क्रम में उतरते हैं, और हिट के बीच का समय काफी कम हो सकता है, जिससे यह बहुत तेज विकल्प बन सकता है। zऔर .कुंजी (कम से कम मेरी en-GB कीबोर्ड पर) एक दूसरे के दर्पण हैं। आप यथोचित के एक डबल टैप पसंद कर सकते हैं z, और यह बहुत अच्छा है कि हमारे पास दोनों विकल्प हैं।
ड्रू नोक

15 साल का विम और मैं इस आसान छोटी सी बात को नहीं जानता था! वोट दें!
PnotNP

14

:help scroll-cursor@Mtk उल्लेखों का आउटपुट । ध्यान दें कि zzऔर के बीच अंतर है z.


कर्सर के लिए स्क्रॉलिंग (स्क्रॉल-कर्सर)

निम्नलिखित कमांड एडिट विंडो (बफर का वह हिस्सा जो आप देखते हैं) को उसी लाइन पर कर्सर रखते हुए रिपोज करते हैं:

z<CR>                   Redraw, line [count] at top of window (default
                        cursor line).  Put cursor at first non-blank in the
                        line.

zt                      Like "z<CR>", but leave the cursor in the same
                        column.  {not in Vi}

z{height}<CR>           Redraw, make window {height} lines tall.  This is
                        useful to make the number of lines small when screen
                        updating is very slow.  Cannot make the height more
                        than the physical screen height.

z.                      Redraw, line [count] at center of window (default
                        cursor line).  Put cursor at first non-blank in the
                        line.

zz                      Like "z.", but leave the cursor in the same column.
                        Careful: If caps-lock is on, this command becomes
                        "ZZ": write buffer and exit!  {not in Vi}

z-                      Redraw, line [count] at bottom of window (default
                        cursor line).  Put cursor at first non-blank in the
                        line.

zb                      Like "z-", but leave the cursor in the same column.
                        {not in Vi}

क्षैतिज रूप से स्क्रॉल करना (स्क्रॉल-क्षैतिज)

निम्नलिखित चार आदेशों के लिए कर्सर स्क्रीन का अनुसरण करता है। यदि कर्सर जिस चरित्र पर है, उसे स्क्रीन से हटा दिया जाता है, तो कर्सर को स्क्रीन पर निकटतम चरित्र में ले जाया जाता है। 'Sidescroll' के मान का उपयोग नहीं किया गया है।

z<Right>    or
zl                      Move the view on the text [count] characters to the
                        right, thus scroll the text [count] characters to the
                        left.  This only works when 'wrap' is off.  {not in
                        Vi}

z<Left>      or
zh                      Move the view on the text [count] characters to the
                        left, thus scroll the text [count] characters to the
                        right.  This only works when 'wrap' is off.  {not in
                        Vi}

zL                      Move the view on the text half a screenwidth to the
                        right, thus scroll the text half a screenwidth to the
                        left.  This only works when 'wrap' is off.  {not in
                        Vi}

zH                      Move the view on the text half a screenwidth to the
                        left, thus scroll the text half a screenwidth to the
                        right.  This only works when 'wrap' is off.  {not in
                        Vi}

निम्नलिखित दो आदेशों के लिए कर्सर को पाठ में स्थानांतरित नहीं किया जाता है, केवल पाठ स्क्रीन पर स्क्रॉल करता है।

zs                      Scroll the text horizontally to position the cursor
                        at the start (left side) of the screen.  This only
                        works when 'wrap' is off.  {not in Vi}

ze                      Scroll the text horizontally to position the cursor
                        at the end (right side) of the screen.  This only
                        works when 'wrap' is off.  {not in Vi}
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.