Vim C C++语法高亮

发布于 2024-08-22 07:05:31 字数 225 浏览 8 评论 0原文

在最新的 Vim 中:

有没有办法定义一个 '{' 这样它被 C/C++ 编译器 (g++) 忽略,但在 Vim synatx 突出显示中被视为“{”?

我试过 //{ 但它也被 Vim 忽略了。

In the latest Vim:

Is there a way to define a '{' such that it's ignored by the C/C++ compiler (g++) but treated like a '{' in Vim synatx highlighting?

I've tried //{ but it's ignored by Vim too.

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

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

发布评论

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

评论(1

枯叶蝶 2024-08-29 07:05:31

语法突出显示的全部目的是帮助指示编译器将如何解释您的代码。例如,如果您错过了文字字符串的结束引号,语法突出显示可以帮助您识别在何处执行此操作。

你要求 vim 功能做一些它明确设计要避免做的事情。

The whole point of syntax highlighting is to help indicate how the compiler will interpret your code. For example, if you miss a closing quote on a literal string, the syntax highlighting helps you to identify where you did that.

You're asking for a vim feature to do something that it's expressly designed to avoid doing.

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