Any quicker navigation trick to place the line at which the cursor is at the moment to the
- top of the screen?
- center of the screen?
- bottom of the screen?
Any quicker navigation trick to place the line at which the cursor is at the moment to the
z
Enter or zt
puts current line to top of screen
z.
or zz
puts current line to center of screen
z-
or zb
puts current line to bottom of screen
(z
Enter, z.
, and z-
puts the cursor in the first non blank column. zt
, zz
, and zb
leaves the cursor in the current column)
More info about scrolling at http://vimdoc.sourceforge.net/htmldoc/scroll.html
or
in vim type :help scroll-cursor
Output of the :help scroll-cursor
@mtk mentions. Note that there is a difference between zz
and z.
.
The following commands reposition the edit window (the part of the buffer that you see) while keeping the cursor on the same line:
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}
For the following four commands the cursor follows the screen. If the character that the cursor is on is moved off the screen, the cursor is moved to the closest character that is on the screen. The value of 'sidescroll' is not used.
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}
For the following two commands the cursor is not moved in the text, only the text scrolls on the screen.
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}
scrolloff
! zt
and zb
put scroll to scrolloff
lines of the top and bottom. Type se so
to see your setting and se so=0
to get the behavior in the answer above.
– Prof Huster
Mar 29 '21 at 23:43
z.
before. I think I prefer having two different keys to hit rather than a double press. You can make parallel keystrokes concurrently, so long as they land in the right order, and the time between hits can be quite short, making this a very fast option. Thez
and.
keys are mirrors of each other (at least on my en-GB keyboard). You could reasonably prefer a double tap of thez
, and it's great we have both options. – Drew Noakes Apr 29 '17 at 20:27<line number>z<t | z | b>
will put the line atline number
at the top, center, or bottom of the vim buffer. – mljrg Feb 19 '20 at 10:59scrolloff
setting. These only put the line at the top or bottom of the screen ifscrolloff=0
, otherwise there arescrolloff
lines before or after the cursor. If you typezz
and the current line is not at the top, but there are lines above the current lines, type:se so=0
. See http://vimdoc.sourceforge.net/htmldoc/options.html#'scrolloff'. – Prof Huster Feb 20 '20 at 12:46zztop
command still doesn't exist, though :) – Obsidian Feb 13 '23 at 19:30