diff options
| author | nyamatongwe <devnull@localhost> | 2000-06-12 03:06:13 +0000 |
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2000-06-12 03:06:13 +0000 |
| commit | 00d22991e9c56fe6164a55bc32919216291f3ab7 (patch) | |
| tree | e35a69833c7111293c5d97914c28a44922399f65 /include/SciLexer.h | |
| parent | bfe06a2f003aa76948d8acb51c70f03afc22fc87 (diff) | |
| download | scintilla-mirror-00d22991e9c56fe6164a55bc32919216291f3ab7.tar.gz | |
Lua language support from Paul Winwood.
Diffstat (limited to 'include/SciLexer.h')
| -rw-r--r-- | include/SciLexer.h | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/include/SciLexer.h b/include/SciLexer.h index 94e8c7c71..58b11d32b 100644 --- a/include/SciLexer.h +++ b/include/SciLexer.h @@ -23,6 +23,7 @@ #define SCLEX_BATCH 12 #define SCLEX_XCODE 13 #define SCLEX_LATEX 14 +#define SCLEX_LUA 15 // Lexical states for SCLEX_PYTHON #define SCE_P_DEFAULT 0 @@ -171,7 +172,7 @@ #define SCE_PL_LONGQUOTE 19 #define SCE_PL_BACKTICKS 20 #define SCE_PL_DATASECTION 21 - + // Lexical states for SCLEX_LATEX #define SCE_L_DEFAULT 0 #define SCE_L_COMMAND 1 @@ -179,4 +180,19 @@ #define SCE_L_MATH 3 #define SCE_L_COMMENT 4 +// Lexical states for SCLEX_LUA +#define SCE_LUA_DEFAULT 0 +#define SCE_LUA_COMMENT 1 +#define SCE_LUA_COMMENTLINE 2 +#define SCE_LUA_COMMENTDOC 3 +#define SCE_LUA_NUMBER 4 +#define SCE_LUA_WORD 5 +#define SCE_LUA_STRING 6 +#define SCE_LUA_CHARACTER 7 +#define SCE_LUA_LITERALSTRING 8 +#define SCE_LUA_PREPROCESSOR 9 +#define SCE_LUA_OPERATOR 10 +#define SCE_LUA_IDENTIFIER 11 +#define SCE_LUA_STRINGEOL 12 + #endif |
