Mostrar comando como está sendo inserido no console vim?

13

Por exemplo, no gvim, se eu estiver no modo normal, eu pressiono "ayiw para arrancar uma palavra para registrar a, gvim mostra o" ayi enquanto eu digito perto do canto inferior direito. É possível obter essa exibição em tempo real no console vim, em caso afirmativo, como?

    
por Steven 20.07.2010 / 06:16

1 resposta

22

Basta adicionar esta linha ao seu .vimrc :

set showcmd

Da ajuda do Vim:

Show (partial) command in the last line of the screen.  Set this
option off if your terminal is slow.
In Visual mode the size of the selected area is shown:
- When selecting characters within a line, the number of characters.
- When selecting more than one line, the number of lines.
- When selecting a block, the size in screen characters:
  {lines}x{columns}.
    
por 20.07.2010 / 06:58

Tags