0

構文ファイルを使用してmceditに関するコメントを強調表示する必要があります。1行のコメントは「-」で始まり、「\n」または「-」で終わる場合があります。コメントを担当する私の構文ファイルの内容は次のとおりです。

context -- \n brown
    spellcheck

context /\* \*/ brown
    spellcheck

1行のコメントの例は次のとおりです。

-- 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」または「-」で終わる可能性のある1行のコメントを強調表示するにはどうすればよいですか?

4

1 に答える 1

-1

ただし、この質問はおそらくスーパーユーザーに適しています。

man pageに基づいて、次のことを試します。

context linestart -- \n brown
    spellcheck

context linestart -- -- brown
    spellcheck
于 2011-06-23T08:53:47.993 に答える