Vim:不同模式下不同的行号颜色

发布于 2024-10-11 01:21:11 字数 90 浏览 6 评论 0 原文

我刚刚开始使用 Vim,我发现自己对当前所处的模式感到困惑。我想知道是否可以在不同模式(命令、视觉模式)下更改行号颜色(默认显示) ,并插入),以便我可以轻松识别它。

I've just started using Vim and I find myself being confused on which mode I'm currently in. I was wondering if it's possible to change the line number color (which I have displayed by default) in the different modes (command, visual, and insert) so that I can easily identify it.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

二智少女 2024-10-18 01:21:11

Vim 有一个名为 showmode 的选项,如果您不在正常模式下,它会在最后一行添加一条消息。请参阅 :help 'showmode' 了解更多信息。

如果您确实想在插入模式下更改数字列的背景,您可以执行以下操作:

autocmd InsertEnter * highlight LineNr ctermbg=red   guibg=red
autocmd InsertLeave * highlight LineNr ctermbg=black guibg=black

请注意,如果您不好并使用抄送 退出插入模式,而不是

<子>
相关 :help 标签:autocmdautocmd-eventshighlighthighlight-groups

Vim has an option called showmode that will put a message on the last line if you are not in normal mode. See :help 'showmode' for more info.

If you really want to change the background of the number column while in insert mode, you could do something like the following:

autocmd InsertEnter * highlight LineNr ctermbg=red   guibg=red
autocmd InsertLeave * highlight LineNr ctermbg=black guibg=black

Note that this method will break if you are bad and use C-c to exit insert mode instead of <Esc> or <C-[.


Relevant :help tags: autocmd, autocmd-events, highlight, highlight-groups

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