diff options
author | Jad Altahan <xviyy@aol.com> | 2018-11-21 19:39:33 +1100 |
---|---|---|
committer | Jad Altahan <xviyy@aol.com> | 2018-11-21 19:39:33 +1100 |
commit | ff40789bb65ac03c27b6c1dd889bdda57a2c2f15 (patch) | |
tree | 3eaa9fe4276a9751cc7aed9deb59f60b7932fe32 /include/SciLexer.h | |
parent | 7f872570ea7a2855e3bb603eb53f2250097efadc (diff) | |
download | scintilla-mirror-ff40789bb65ac03c27b6c1dd889bdda57a2c2f15.tar.gz |
Feature [feature-requests:#1242]. Add lexer for Nim
Diffstat (limited to 'include/SciLexer.h')
-rw-r--r-- | include/SciLexer.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/include/SciLexer.h b/include/SciLexer.h index b6f864c6d..7a71679a7 100644 --- a/include/SciLexer.h +++ b/include/SciLexer.h @@ -138,6 +138,7 @@ #define SCLEX_MAXIMA 123 #define SCLEX_STATA 124 #define SCLEX_SAS 125 +#define SCLEX_NIM 126 #define SCLEX_AUTOMATIC 1000 #define SCE_P_DEFAULT 0 #define SCE_P_COMMENTLINE 1 @@ -1855,6 +1856,23 @@ #define SCE_SAS_BLOCK_KEYWORD 13 #define SCE_SAS_MACRO_FUNCTION 14 #define SCE_SAS_STATEMENT 15 +#define SCE_NIM_DEFAULT 0 +#define SCE_NIM_COMMENT 1 +#define SCE_NIM_COMMENTDOC 2 +#define SCE_NIM_COMMENTLINE 3 +#define SCE_NIM_COMMENTLINEDOC 4 +#define SCE_NIM_NUMBER 5 +#define SCE_NIM_STRING 6 +#define SCE_NIM_CHARACTER 7 +#define SCE_NIM_WORD 8 +#define SCE_NIM_TRIPLE 9 +#define SCE_NIM_TRIPLEDOUBLE 10 +#define SCE_NIM_BACKTICKS 11 +#define SCE_NIM_FUNCNAME 12 +#define SCE_NIM_STRINGEOL 13 +#define SCE_NIM_NUMERROR 14 +#define SCE_NIM_OPERATOR 15 +#define SCE_NIM_IDENTIFIER 16 /* --Autogenerated -- end of section automatically generated from Scintilla.iface */ #endif |