Kaydet (Commit) d7aa4b59 authored tarafından Colomban Wendling's avatar Colomban Wendling

Update for new Scintilla styles

üst 1e59b15c
......@@ -19,6 +19,7 @@ sqlplus=default
sqlplus_prompt=default
sqlplus_comment=comment
quotedidentifier=identifier_2
qoperator=operator
[keywords]
# all items must be in one line
......
......@@ -4,6 +4,7 @@
default=default
comment=comment
comment_line_bang=comment_line
block_comment=comment
number=number_1
string=string_1
operator=operator
......
......@@ -1388,7 +1388,8 @@ static const HLStyle highlighting_styles_SQL[] =
{ SCE_SQL_SQLPLUS, "sqlplus", FALSE },
{ SCE_SQL_SQLPLUS_PROMPT, "sqlplus_prompt", FALSE },
{ SCE_SQL_SQLPLUS_COMMENT, "sqlplus_comment", FALSE },
{ SCE_SQL_QUOTEDIDENTIFIER, "quotedidentifier", FALSE }
{ SCE_SQL_QUOTEDIDENTIFIER, "quotedidentifier", FALSE },
{ SCE_SQL_QOPERATOR, "qoperator", FALSE }
/* these are for user-defined keywords we don't set yet */
/*{ SCE_SQL_USER1, "user1", FALSE },
{ SCE_SQL_USER2, "user2", FALSE },
......@@ -1483,6 +1484,7 @@ static const HLStyle highlighting_styles_VHDL[] =
{ SCE_VHDL_DEFAULT, "default", FALSE },
{ SCE_VHDL_COMMENT, "comment", FALSE },
{ SCE_VHDL_COMMENTLINEBANG, "comment_line_bang", FALSE },
{ SCE_VHDL_BLOCK_COMMENT, "block_comment", FALSE },
{ SCE_VHDL_NUMBER, "number", FALSE },
{ SCE_VHDL_STRING, "string", FALSE },
{ SCE_VHDL_OPERATOR, "operator", FALSE },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment