命令的第一个字符未显示在 vim 中
first character of command does not show in vim
我通过vim导师学习vim,在lesson2.1中,它说:
NOTE: The letter d will appear on the last line of the screen as you type
it. Vim is waiting for you to type w . If you see another character
than d you typed something wrong; press <ESC> and start over.
但是,在我输入 "d" 后,屏幕底部没有显示任何内容。这是我输入 "d" 后 vim 的屏幕截图。安装 vim 后我没有做任何更改。我还尝试了 vim 应用程序而不是终端。我输入 "d" 后仍然看不到任何东西。我这里有什么误解吗?我的系统是OS X 10.9.5,vim是7.4.258。
在vim导师类型:
:set showcmd
默认情况下 vimtutor 以普通方式运行 vim,无需任何额外设置。要在 vim 默认情况下具有此行为,您可以添加
set showcmd
行到您的 .vimrc
文件。
我通过vim导师学习vim,在lesson2.1中,它说:
NOTE: The letter d will appear on the last line of the screen as you type
it. Vim is waiting for you to type w . If you see another character
than d you typed something wrong; press <ESC> and start over.
但是,在我输入 "d" 后,屏幕底部没有显示任何内容。这是我输入 "d" 后 vim 的屏幕截图。安装 vim 后我没有做任何更改。我还尝试了 vim 应用程序而不是终端。我输入 "d" 后仍然看不到任何东西。我这里有什么误解吗?我的系统是OS X 10.9.5,vim是7.4.258。
在vim导师类型:
:set showcmd
默认情况下 vimtutor 以普通方式运行 vim,无需任何额外设置。要在 vim 默认情况下具有此行为,您可以添加
set showcmd
行到您的 .vimrc
文件。