我正在为使用 c 样式注释块的专有语言构建定义。
我设置了以下内容:
评论打开:/*
评论关闭:*/
将关键字视为符号(在评论块框架中):选中
我没有*
或/
设置为激活操作员。
这将导致以下格式:(
我已经对评论进行了评论以显示评论是否被 notepad++ 的评论引擎视为评论)
/*comment*/ //comment
code //comment (but should be code)
/* comment */ //comment
code //code
/**/code/**/ //comment (but should be code)
code //comment (but should be code)
/*comment //comment
comment //comment
comment*/ //comment
code //code
/* //comment
comment //comment
*/ //comment
如果我取消选中将关键字视为符号,我会得到:
/*comment*/ //code (but should be comment)
code //code
/* comment */ //comment
code //code
/**/code/**/ //code (both /**/ show as code as well)
code //code
/*comment //code (but should be comment)
comment //code (but should be comment)
comment*/ //code (but should be comment)
code //code
/* //comment
comment //comment
*/ //comment
我还尝试了将关键字视为符号并将 and 添加到运算符列表的每种*
组合/
。