diff options
author | Neil <nyamatongwe@gmail.com> | 2015-08-16 10:06:35 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2015-08-16 10:06:35 +1000 |
commit | b8c77c7f9e2322a1f32a49a3a6cf59d5dee04042 (patch) | |
tree | 1bb4526438eb22ea6119ee00a12e36774080cc75 /include | |
parent | a5b773a39536d05ded842e86ce15c080a1286666 (diff) | |
download | scintilla-mirror-b8c77c7f9e2322a1f32a49a3a6cf59d5dee04042.tar.gz |
Bug [#1749]. Added lexical class for CoffeeScript instance properties and fixed
some cases of regex highlighting.
From active-m / ActiveState.
Diffstat (limited to 'include')
-rw-r--r-- | include/SciLexer.h | 1 | ||||
-rw-r--r-- | include/Scintilla.iface | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/include/SciLexer.h b/include/SciLexer.h index 034060a4b..57c15cb33 100644 --- a/include/SciLexer.h +++ b/include/SciLexer.h @@ -1567,6 +1567,7 @@ #define SCE_COFFEESCRIPT_COMMENTBLOCK 22 #define SCE_COFFEESCRIPT_VERBOSE_REGEX 23 #define SCE_COFFEESCRIPT_VERBOSE_REGEX_COMMENT 24 +#define SCE_COFFEESCRIPT_INSTANCEPROPERTY 25 #define SCE_AVS_DEFAULT 0 #define SCE_AVS_COMMENTBLOCK 1 #define SCE_AVS_COMMENTBLOCKN 2 diff --git a/include/Scintilla.iface b/include/Scintilla.iface index b835cd4ec..9d83372aa 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -4415,6 +4415,7 @@ val SCE_COFFEESCRIPT_TRIPLEVERBATIM=21 val SCE_COFFEESCRIPT_COMMENTBLOCK=22 val SCE_COFFEESCRIPT_VERBOSE_REGEX=23 val SCE_COFFEESCRIPT_VERBOSE_REGEX_COMMENT=24 +val SCE_COFFEESCRIPT_INSTANCEPROPERTY=25 # Lexical states for SCLEX_AVS lex AVS=SCLEX_AVS SCE_AVS_ val SCE_AVS_DEFAULT=0 |