禁用vim';s—插入—消息

禁用vim';s—插入—消息,vim,macvim,Vim,Macvim,当我进入插入模式时,vim会在我的状态栏下方显示--insert--(当然,所有模式都会出现,只显示一个示例): 鉴于我已经在状态栏中显示了当前模式,是否有办法禁用此--INSERT--以获得纯粹的美学效果 我一直潜入帮助部分和谷歌,但找不到办法。这是可能的,还是我应该学会适应它?这是由showmode设置控制的。加 set noshowmode 发送到vimrc以禁用该消息。下面复制了:h“showmode”的帮助 'showmode' 'smd' 'noshowmode' 'nosmd'

当我进入插入模式时,vim会在我的状态栏下方显示
--insert--
(当然,所有模式都会出现,只显示一个示例):

鉴于我已经在状态栏中显示了当前模式,是否有办法禁用此
--INSERT--
以获得纯粹的美学效果


我一直潜入帮助部分和谷歌,但找不到办法。这是可能的,还是我应该学会适应它?

这是由
showmode
设置控制的。加

set noshowmode
发送到vimrc以禁用该消息。下面复制了
:h“showmode”
的帮助

'showmode' 'smd' 'noshowmode' 'nosmd' '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. “显示模式”“smd”“noshowmode”“nosmd” “显示模式”“smd”布尔值(Vim默认值:开,Vi默认值:关) 全球的 如果处于插入、替换或可视模式,请在最后一行显示消息。 使用“highlight”(突出显示)中的“M”标志设置突出显示的类型 这条消息。 当可以使用XIM时,消息将包括“XIM”。但是这个 并不意味着XIM真的处于活动状态,尤其是当“imactivatekey”处于活动状态时 未设置。 注意:当选择“兼容”时,此选项设置为Vi默认值 重置“兼容”时,将和设置为Vim默认值。