diff options
author | nyamatongwe <unknown> | 2000-05-08 10:29:03 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2000-05-08 10:29:03 +0000 |
commit | 3b3753857a56e83e77485a1b15383f1ecede0911 (patch) | |
tree | b246b50d5a8ea879c52c0c387400cf85c8b373a5 /include/SciLexer.h | |
parent | 949322c30cd1e1e44176237a89b69be5481db824 (diff) | |
download | scintilla-mirror-3b3753857a56e83e77485a1b15383f1ecede0911.tar.gz |
Added LaTeX lexer from Christian Obrecht.
Diffstat (limited to 'include/SciLexer.h')
-rw-r--r-- | include/SciLexer.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/SciLexer.h b/include/SciLexer.h index b99526e4f..d869758f6 100644 --- a/include/SciLexer.h +++ b/include/SciLexer.h @@ -22,6 +22,7 @@ #define SCLEX_MAKEFILE 11 #define SCLEX_BATCH 12 #define SCLEX_XCODE 13 +#define SCLEX_LATEX 14 // Lexical states for SCLEX_PYTHON #define SCE_P_DEFAULT 0 @@ -170,4 +171,11 @@ #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 +#define SCE_L_TAG 2 +#define SCE_L_MATH 3 +#define SCE_L_COMMENT 4 + #endif |