本文介绍了显示Vim中间命令的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

vimtutor 第2.1课:DELETION COMMANDS,在#4项目后面有一个注释:

In vimtutor Lesson 2.1: DELETION COMMANDS, there is a note after the #4 item:

请参阅最后一行中的中间命令,如注释所述。如何启用此功能?我应该在 .vimrc

However, I do not see intermediate commands in the last line as the note says. How do I enable this? What option should I set in my .vimrc?

推荐答案

使用

:set showcmd

这将在Vim中键入命令。
同样也可以放入.vimrc

That will display the commands as you type it in Vim.The same can also be put into .vimrc

这篇关于显示Vim中间命令的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-24 08:13