- Selecting first character of block comment changes highlighting of first line of block comment
- Highlighting of case-insensitive line comment changes on selecting line comment string
Best regards from an UC/UE/UES for Windows user from Austria
Code: Select all
/* normal multiline
comment */
SELECT /*+ this_is_an_Oracle_SQL_HINT, different color and italics with my theme */ * from dual, dual d2
;
Code: Select all
/**/ prompt this is normal code, not a comment, highlighted correctly
prompt this is normal code, after empty alternate or normal block comment, though HIGHLIGHTED AS COMMENT unless '/*+' as block comment AND block comment alt is removed
Code: Select all
/L1"Oracle SQL" Nocase Line Comment = -- Line Comment Alt = rem Block Comment On = /*+ Block Comment Off = */ Block Comment On Alt = /* Block Comment Off Alt = */ String Chars = ' DisableMLS File Extensions = SQL
Code: Select all
/* normal multiline
comment ending with slash-star-slash /*/
prompt this is normal code, though HIGHLIGHTED AS COMMENT
Code: Select all
/L1"Oracle SQL" Nocase Line Comment Num = 4rem Line Comment Alt = -- Block Comment On = /* Block Comment Off = */ String Chars = ' DisableMLS File Extensions = SQL TQL PAK PKS PKG FNC VW PRC TRG AWF OOD INS TAB SYN SQS IND
Code: Select all
void foo1()
{
/* /* This is a block /* /**/*/ comment. */
for (int i = 0; i < 10; i++) { // whatever }
/* This is another block comment. */*/// Line comment.
return;
}
void foo2()
{
/*/* This is a block /*/**/*/ comment. */
for (int i = 0; i < 10; i++) { // whatever }
/* This is another block comment. */*/// Line comment.
return;
}