On 24/1/2006, at 11:04, Patrick Mast wrote:
I'm making a "DOS command prompt". It uses REM in front of a line to "remark" that line. How can I set this into the bundle.
Did you read about language grammars [1]?
The rule would be something like (I assume one whitespace character is required behind REM):
{ name = "comment.line.dos"; match = "^\s*REM\s.*$"; },