diff options
author | nyamatongwe <devnull@localhost> | 2000-08-22 14:02:17 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2000-08-22 14:02:17 +0000 |
commit | fcb13e202fc8f43bae9ff15d4ccf396d5c0df885 (patch) | |
tree | ae5006e09bee63417cbfab0a26cdd1ec6f5e65d6 /include | |
parent | 9da929e6ba32ccbbaff03a75dc8ce842d74b757c (diff) | |
download | scintilla-mirror-fcb13e202fc8f43bae9ff15d4ccf396d5c0df885.tar.gz |
Added C# support to LexCPP with verbatime string literals and @ quoted
keywords handled correctly.
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 950f0cf48..cb52493c2 100644 --- a/include/SciLexer.h +++ b/include/SciLexer.h @@ -56,6 +56,7 @@ #define SCE_C_OPERATOR 10 #define SCE_C_IDENTIFIER 11 #define SCE_C_STRINGEOL 12 +#define SCE_C_VERBATIM 13 // Lexical states for SCLEX_HTML, SCLEX_XML #define SCE_H_DEFAULT 0 diff --git a/include/Scintilla.iface b/include/Scintilla.iface index 37c6baf61..c691ad386 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -1097,6 +1097,7 @@ val SCE_C_PREPROCESSOR=9 val SCE_C_OPERATOR=10 val SCE_C_IDENTIFIER=11 val SCE_C_STRINGEOL=12 +val SCE_C_VERBATIM=13 val SCE_H_DEFAULT=0 val SCE_H_TAG=1 val SCE_H_TAGUNKNOWN=2 |