Mostrar comando quando está sendo inserido no console vim?

16

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

Steven
fonte

Respostas:

26

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}.
Bill Odom
fonte