diff options
author | nyamatongwe <devnull@localhost> | 2001-05-31 07:59:13 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2001-05-31 07:59:13 +0000 |
commit | 997a00b76b70b5f5ca2ba8918d0f70d9748834b1 (patch) | |
tree | 2d4c39c9fbd6df3afd5935a123d6c709b5062fcb /include | |
parent | f2564bf50771ff7a5b32fa5336fd0065dcd884a6 (diff) | |
download | scintilla-mirror-997a00b76b70b5f5ca2ba8918d0f70d9748834b1.tar.gz |
Updated to use new ColouriseContext class.
More accurate handling of comments.
Less possibility of different lexings dependent on which sets of lines
are lexed together.
2nd set of keywords available for tasks such as highlighting an API.
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 b55c5a375..24a9b8978 100644 --- a/include/SciLexer.h +++ b/include/SciLexer.h @@ -70,6 +70,7 @@ #define SCE_C_VERBATIM 13 #define SCE_C_REGEX 14 #define SCE_C_COMMENTLINEDOC 15 +#define SCE_C_WORD2 16 #define SCE_H_DEFAULT 0 #define SCE_H_TAG 1 #define SCE_H_TAGUNKNOWN 2 diff --git a/include/Scintilla.iface b/include/Scintilla.iface index 1431095c3..80579f27c 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -1262,6 +1262,7 @@ val SCE_C_STRINGEOL=12 val SCE_C_VERBATIM=13 val SCE_C_REGEX=14 val SCE_C_COMMENTLINEDOC=15 +val SCE_C_WORD2=16 # Lexical states for SCLEX_HTML, SCLEX_XML val SCE_H_DEFAULT=0 val SCE_H_TAG=1 |