我需要使用语法文件突出显示对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”或“ - ”结尾的一行注释?
答案 0 :(得分:-1)
这个问题可能更适合superuser,但是:
根据the man page,我会尝试:
context linestart -- \n brown
spellcheck
context linestart -- -- brown
spellcheck