VIM关于colorize插件的问题

发布于 2024-11-15 21:29:52 字数 263 浏览 5 评论 0原文

它运行良好,但它依赖于我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

若相惜即相离 2024-11-22 21:29:52

您可以在 ~/.vimrc 中使用以下映射:

inoremap jj <Esc>:highlight Normal guibg=Sys_Window<CR>

注意:如果您已有 inoremap jj 行,则您可以可以用 inoremap 代替 imap ——这样,jj 只是“落入”并且也使用你的您设置的 绑定。

希望这有帮助!

You can use the following mapping in your ~/.vimrc:

inoremap jj <Esc>:highlight Normal guibg=Sys_Window<CR>

Note: If you have a inoremap jj <Esc> line already, you could subsitute the inoremap for just imap -- that way, the jj just 'falls through' and also uses your <Esc> bind that you set up.

Hope this helps!

满天都是小星星 2024-11-22 21:29:52

当您退出插入模式时会启动一个事件。也许你应该更好地使用它:

augroup alterNormal
    autocmd InsertLeave * :highlight Normal guibg=Sys_Window
augroup END

There is an event that is launched when you exit insert mode. Maybe you should better use it:

augroup alterNormal
    autocmd InsertLeave * :highlight Normal guibg=Sys_Window
augroup END
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文