Como colocar a linha atual na parte superior / central / inferior da tela no vim?

90

Qualquer truque de navegação mais rápido para colocar a linha na qual o cursor está no momento para o

  • topo da tela?
  • centro da tela?
  • parte inferior da tela?
por mtk 21.01.2014 / 15:00

2 respostas

118

zt coloca a linha atual na parte superior da tela
z. ou zz coloca a linha atual no centro da tela
zb coloca a linha atual na parte inferior da tela

Mais informações sobre a rolagem no link ou
no tipo vim :help scroll-cursor

    
por 21.01.2014 / 15:00
7

A saída do :help scroll-cursor @mtk menciona. Observe que há uma diferença entre zz e z. .

Rolagem em relação ao cursor (cursor de rolagem)

Os seguintes comandos reposicionam a janela de edição (a parte do buffer que você vê) enquanto mantém o cursor na mesma linha:

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}

Rolagem horizontal (rolagem horizontal)

Para os quatro comandos a seguir, o cursor segue a tela. Se o caractere que o cursor está em é movido para fora da tela, o cursor é movido para o personagem mais próximo que está na tela. O valor de 'sidescroll' é não usado.

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}

Para os dois comandos seguintes, o cursor não é movido no texto, apenas o texto rola na tela.

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}
    
por 29.04.2017 / 22:36