我正在通过vimtutor学习vim,在第2.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.
然而,在我输入&#34; d&#34;后,我的屏幕底部没有显示任何内容。这是我键入&#34; d&#34;后我的vim的屏幕截图。安装vim后我没有改变任何东西。我也试过vim app而不是终端。我输入&#34; d&#34;后仍然看不到任何东西。我在这里有任何误解吗?我的系统是OS X 10.9.5,vim是7.4.258。
答案 0 :(得分:3)
在vimtutor中输入:
:set showcmd
默认情况下,vimtutor以普通vim运行,无需任何额外设置。要在vim中默认使用此行为,您可以添加
set showcmd
转到您的.vimrc
文件。