diff options
author | Neil <nyamatongwe@gmail.com> | 2013-08-21 14:50:48 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2013-08-21 14:50:48 +1000 |
commit | 44f44d7ab98c7cf019fd42d9b34ddb19802413f7 (patch) | |
tree | e6ef95a0c5c830e2dc44099fbf2057cc2e0c9cb1 /include/SciLexer.h | |
parent | 8e6ddfd4ed7a72190796d138557ad3eb5da7b0db (diff) | |
download | scintilla-mirror-44f44d7ab98c7cf019fd42d9b34ddb19802413f7.tar.gz |
Feature: [feature-requests:#1008]. Lexer added for KVIrc script.
From OmegaPhil.
Diffstat (limited to 'include/SciLexer.h')
-rw-r--r-- | include/SciLexer.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/include/SciLexer.h b/include/SciLexer.h index 18cdb984c..bd127557f 100644 --- a/include/SciLexer.h +++ b/include/SciLexer.h @@ -122,6 +122,7 @@ #define SCLEX_VISUALPROLOG 107 #define SCLEX_LITERATEHASKELL 108 #define SCLEX_STTXT 109 +#define SCLEX_KVIRC 110 #define SCLEX_AUTOMATIC 1000 #define SCE_P_DEFAULT 0 #define SCE_P_COMMENTLINE 1 @@ -1647,6 +1648,19 @@ #define SCE_STTXT_DATETIME 16 #define SCE_STTXT_VARS 17 #define SCE_STTXT_PRAGMAS 18 +#define SCE_KVIRC_DEFAULT 0 +#define SCE_KVIRC_COMMENT 1 +#define SCE_KVIRC_COMMENTBLOCK 2 +#define SCE_KVIRC_STRING 3 +#define SCE_KVIRC_WORD 4 +#define SCE_KVIRC_KEYWORD 5 +#define SCE_KVIRC_FUNCTION_KEYWORD 6 +#define SCE_KVIRC_FUNCTION 7 +#define SCE_KVIRC_VARIABLE 8 +#define SCE_KVIRC_NUMBER 9 +#define SCE_KVIRC_OPERATOR 10 +#define SCE_KVIRC_STRING_FUNCTION 11 +#define SCE_KVIRC_STRING_VARIABLE 12 /* --Autogenerated -- end of section automatically generated from Scintilla.iface */ #endif |