diff options
author | Neil <nyamatongwe@gmail.com> | 2014-12-17 19:29:25 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2014-12-17 19:29:25 +1100 |
commit | c00f641ebf31eafc77d72f87f825791b1b0efbf0 (patch) | |
tree | 4d28b843d99aec09ba331734711d8e8f1b612112 /include | |
parent | 8b4d3c4eb39bcd10168321d68d9b1d3df544d28c (diff) | |
download | scintilla-mirror-c00f641ebf31eafc77d72f87f825791b1b0efbf0.tar.gz |
Highlights doc comment keywords; has separate styles for input, output, and
inout ports; and fixes a bug in highlighting numbers.
From Haimag Ren.
Diffstat (limited to 'include')
-rw-r--r-- | include/SciLexer.h | 5 | ||||
-rw-r--r-- | include/Scintilla.iface | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/include/SciLexer.h b/include/SciLexer.h index b2539eb91..b986d7391 100644 --- a/include/SciLexer.h +++ b/include/SciLexer.h @@ -899,6 +899,11 @@ #define SCE_V_IDENTIFIER 11 #define SCE_V_STRINGEOL 12 #define SCE_V_USER 19 +#define SCE_V_COMMENT_WORD 20 +#define SCE_V_INPUT 21 +#define SCE_V_OUTPUT 22 +#define SCE_V_INOUT 23 +#define SCE_V_PORT_CONNECT 24 #define SCE_KIX_DEFAULT 0 #define SCE_KIX_COMMENT 1 #define SCE_KIX_STRING1 2 diff --git a/include/Scintilla.iface b/include/Scintilla.iface index 803028022..30593426e 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -3600,6 +3600,11 @@ val SCE_V_OPERATOR=10 val SCE_V_IDENTIFIER=11 val SCE_V_STRINGEOL=12 val SCE_V_USER=19 +val SCE_V_COMMENT_WORD=20 +val SCE_V_INPUT=21 +val SCE_V_OUTPUT=22 +val SCE_V_INOUT=23 +val SCE_V_PORT_CONNECT=24 # Lexical states for SCLEX_KIX lex Kix=SCLEX_KIX SCE_KIX_ val SCE_KIX_DEFAULT=0 |