Comment Line and Comment Block starting with same character
-
Hey all. Appreciate any help.
I’m defining a language for highlighting, etc. Ran into a problem with Comment Lines.
A comment line begins with ;
A comment block begins with ;/ and ends with /;
How do I use both? If I enter it that way, Notepad++ ignores the comment block. If I leave the comment line blank, then the comment block works perfectly.
Is there any solution? I’ve tried including a space after the ; but apparently I don’t know how to escape a space character properly?
Thanks!
-
Instead of using comment, use delimiter but make sure the block is defined before the
line comment -
Works perfectly! Thanks so much!