VIM关于colorize插件的问题
它运行良好,但它依赖于我使用 Esc 退出输入模式。
我倾向于使用 jj (我在 -vimrc 中设置)
如何调整代码的最后一行以适应 jj?
“当你按下退出按钮时,你需要下一行来改变颜色。
inoremap <Esc> <Esc>:highlight Normal guibg=Sys_Window<cr>
It is working well but it relies on my using Esc to get out of input mode.
I tend to use jj (which i set up in -vimrc)
How do I adjust the last line of the code to suit jj?
"You need the next line to change the color back when you hit escape.
inoremap <Esc> <Esc>:highlight Normal guibg=Sys_Window<cr>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在 ~/.vimrc 中使用以下映射:
注意:如果您已有
inoremap jj
行,则您可以可以用inoremap
代替imap
——这样,jj
只是“落入”并且也使用你的您设置的
绑定。希望这有帮助!
You can use the following mapping in your ~/.vimrc:
Note: If you have a
inoremap jj <Esc>
line already, you could subsitute theinoremap
for justimap
-- that way, thejj
just 'falls through' and also uses your<Esc>
bind that you set up.Hope this helps!
当您退出插入模式时会启动一个事件。也许你应该更好地使用它:
There is an event that is launched when you exit insert mode. Maybe you should better use it: