Vim 中正确的标签突出显示?

发布于 2024-10-19 07:55:52 字数 141 浏览 4 评论 0原文

刚刚进入 Vim,但不明白为什么它没有正确突出显示这些 HTML 标签。结束正文和 html 标签不应该是粗体和红色吗?见图。

Vim html 文档

Just getting into Vim, but can't figure out why it's not highlighting these HTML tags properly. Shouldn't the closing body and html tags be bold and red? See pic.

Vim html document

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

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

发布评论

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

评论(1

送你一个梦 2024-10-26 07:55:52

大多数颜色方案不会超出通用突出显示组(例如 KeywordString)。

我最喜欢的颜色方案是 Sorcerer,但我必须像这样自定义它:

hi htmlTag            guifg=#90b0d1 gui=NONE 
hi htmlSpecialTagName guifg=#90b0d1 gui=NONE 
hi htmlTagName        guifg=#90b0d1 gui=NONE  
hi htmlEndTag         guifg=#90b0d1 gui=NONE

才能获得:

 Correct html 标签在 Vim 中突出显示

Most colorschemes don't go very far beyond the generic highlight groups like Keyword or String.

My favorite colorscheme is Sorcerer but I had to customize it like that :

hi htmlTag            guifg=#90b0d1 gui=NONE 
hi htmlSpecialTagName guifg=#90b0d1 gui=NONE 
hi htmlTagName        guifg=#90b0d1 gui=NONE  
hi htmlEndTag         guifg=#90b0d1 gui=NONE

to obtain this:

correct html tags highlighting in Vim

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