- 论坛徽章:
- 0
|
回复 4# alexandnpu
额,这位同学,
在你吐槽VIM文档之前,你确定你认真看过了么。
:h 'smd'
'showmode' 'smd' boolean (Vim default: on, Vi default: off)
global
If in Insert, Replace or Visual mode put a message on the last line.
Use the 'M' flag in 'highlight' to set the type of highlighting for
this message.
When |XIM| may be used the message will include "XIM". But this
doesn't mean XIM is really active, especially when 'imactivatekey' is
not set.
NOTE: This option is set to the Vi default value when 'compatible' is
set and to the Vim default value when 'compatible' is reset.
:h :hi
往下翻,可以看到
ModeMsg 'showmode' message (e.g., "-- INSERT --")
你想要的,可以通过
hi ModeMsg ctermfg=xx 来实现。
|
|