如何在 mcedit 中突出显示注释?

发布于 2024-11-16 13:37:11 字数 459 浏览 3 评论 0原文

我需要使用语法文件突出显示 mcedit 上的注释。 一行注释以“--”开头,可以以“\n”或“--”结尾。 我负责注释的语法文件内容如下:

context -- \n brown
    spellcheck

context /\* \*/ brown
    spellcheck

一行注释的示例如下:

-- This line starts with comment
this is code -- This is another comment, which ends with '\n'
this is another code -- This is another comment, which ends with '--' -- this is another code after comment

如何突出显示可能以“\n”或“--”结尾的一行注释?

I need to highlight comments on mcedit using syntax file.
One line comment begins with "--" and may end with "\n" or with "--".
My syntax file content which responsible for comments is following:

context -- \n brown
    spellcheck

context /\* \*/ brown
    spellcheck

Example of one line comments is here:

-- This line starts with comment
this is code -- This is another comment, which ends with '\n'
this is another code -- This is another comment, which ends with '--' -- this is another code after comment

How to highlight one line comment that may end with "\n" or with "--"?

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

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

发布评论

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

评论(1

挽你眉间 2024-11-23 13:37:11

这个问题可能更适合超级用户,但是:

基于手册页,我会尝试:

context linestart -- \n brown
    spellcheck

context linestart -- -- brown
    spellcheck

This question is probably more suited to superuser, however:

Based on the man page, I would try:

context linestart -- \n brown
    spellcheck

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