diff options
author | Gunter Königsmann <unknown> | 2018-03-06 15:52:23 +1100 |
---|---|---|
committer | Gunter Königsmann <unknown> | 2018-03-06 15:52:23 +1100 |
commit | bb59ac2319ce5229d021c4a0496b1931ad4684c3 (patch) | |
tree | 84b538c5e11d26d69db56ea5ca7f988dd2c4c43a /include/SciLexer.h | |
parent | 1645601aa99664c9fecb98a1a46aacfb660a936b (diff) | |
download | scintilla-mirror-bb59ac2319ce5229d021c4a0496b1931ad4684c3.tar.gz |
Backport: Feature [feature-requests:#1210]. Maxima lexer added.
Backport of changeset 6474:7a2aeece58b6.
Diffstat (limited to 'include/SciLexer.h')
-rw-r--r-- | include/SciLexer.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/SciLexer.h b/include/SciLexer.h index 70fdb97f8..8772d8cb1 100644 --- a/include/SciLexer.h +++ b/include/SciLexer.h @@ -135,6 +135,7 @@ #define SCLEX_JSON 120 #define SCLEX_EDIFACT 121 #define SCLEX_INDENT 122 +#define SCLEX_MAXIMA 123 #define SCLEX_LPEG 999 #define SCLEX_AUTOMATIC 1000 #define SCE_P_DEFAULT 0 @@ -673,6 +674,14 @@ #define SCE_MATLAB_OPERATOR 6 #define SCE_MATLAB_IDENTIFIER 7 #define SCE_MATLAB_DOUBLEQUOTESTRING 8 +#define SCE_MAXIMA_OPERATOR 0 +#define SCE_MAXIMA_COMMANDENDING 1 +#define SCE_MAXIMA_COMMENT 2 +#define SCE_MAXIMA_NUMBER 3 +#define SCE_MAXIMA_STRING 4 +#define SCE_MAXIMA_COMMAND 5 +#define SCE_MAXIMA_VARIABLE 6 +#define SCE_MAXIMA_UNKNOWN 7 #define SCE_SCRIPTOL_DEFAULT 0 #define SCE_SCRIPTOL_WHITE 1 #define SCE_SCRIPTOL_COMMENTLINE 2 |