Hi forum,
PeopleCode has 3 block comment string combinations: /* */, <* *>, and rem ;
rem requires a trailing semicolon, for example:
But this does not catch rem lines with a missing semicolon at the end. I would like it to highlight and fold everything after the "rem" at the start of a line as a comment until the next semicolon, for example:
PeopleCode has 3 block comment string combinations: /* */, <* *>, and rem ;
rem requires a trailing semicolon, for example:
Is there a way that I can configure UltraEdit syntax highlighting and code folding for this? I currently use:rem This is a comment;
&string = "This is not a comment";
Continue;
Code: Select all
/L15"PeopleCode 8.4" PEOPLECODE_LANG Line Comment = rem Block Comment On = /* Block Comment Off = */ Block Comment On Alt = <* Block Comment Off Alt = *> Nocase String Chars = " File Extensions = PPL
Thanks, Danrem This is a comment
&string = "This is not a comment";
Continue;