我想在当前模式下更改光标挂起的颜色。
这是我的代码到目前为止(.gvimrc)。
set gcr=n:blinkon0 set gcr=i:blinkon0 highlight Cursor guifg=white guibg=red highlight iCursor guifg=white guibg=green
现在,光标为灰色,没有任何变化。
运行亮点Cursor guifg = white guibg =红色手动工作,但不是下面的行。
我想要插入模式中的颜色为绿色,并且在其他模式下都为红色。
我从vim irc @ freenode得到一些帮助。
原文链接:https://www.f2er.com/bash/387584.html这是解决方案。
au InsertLeave * hi Cursor guibg=red au InsertEnter * hi Cursor guibg=green