web-dev-qa-db-ja.com

コンソールvimに入力されているコマンドを表示しますか?

たとえば、gvimでは、通常モードの場合、「ayiw」を押してWordをレジスタaにヤンクします。gvimは、右下隅の近くに入力すると「ayi」を表示します。コンソールvimでこのリアルタイム表示を取得することは可能ですか?もしそうなら、どのように?

16
Steven

この行を.vimrcに追加するだけです。

set showcmd

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