diff options
author | nyamatongwe <devnull@localhost> | 2013-05-23 16:07:54 +1000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2013-05-23 16:07:54 +1000 |
commit | 413444468f55e977a7b60a928c53e66cfe305460 (patch) | |
tree | c56e6dee6f32a9ef596de9699ab94a65009f943c /include/SciLexer.h | |
parent | b77531466b99bf70358658e0e33b4288be436fea (diff) | |
download | scintilla-mirror-413444468f55e977a7b60a928c53e66cfe305460.tar.gz |
Feature: [feature-requests:#959]. Added lexer and folder for Structured Text language.
from Pavel Bulochkin
Diffstat (limited to 'include/SciLexer.h')
-rw-r--r-- | include/SciLexer.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/include/SciLexer.h b/include/SciLexer.h index 1ddf628bd..18cdb984c 100644 --- a/include/SciLexer.h +++ b/include/SciLexer.h @@ -121,6 +121,7 @@ #define SCLEX_OSCRIPT 106 #define SCLEX_VISUALPROLOG 107 #define SCLEX_LITERATEHASKELL 108 +#define SCLEX_STTXT 109 #define SCLEX_AUTOMATIC 1000 #define SCE_P_DEFAULT 0 #define SCE_P_COMMENTLINE 1 @@ -1627,6 +1628,25 @@ #define SCE_VISUALPROLOG_STRING_VERBATIM 20 #define SCE_VISUALPROLOG_STRING_VERBATIM_SPECIAL 21 #define SCE_VISUALPROLOG_STRING_VERBATIM_EOL 22 +#define SCE_STTXT_DEFAULT 0 +#define SCE_STTXT_COMMENT 1 +#define SCE_STTXT_COMMENTLINE 2 +#define SCE_STTXT_KEYWORD 3 +#define SCE_STTXT_TYPE 4 +#define SCE_STTXT_FUNCTION 5 +#define SCE_STTXT_FB 6 +#define SCE_STTXT_NUMBER 7 +#define SCE_STTXT_HEXNUMBER 8 +#define SCE_STTXT_PRAGMA 9 +#define SCE_STTXT_OPERATOR 10 +#define SCE_STTXT_CHARACTER 11 +#define SCE_STTXT_STRING1 12 +#define SCE_STTXT_STRING2 13 +#define SCE_STTXT_STRINGEOL 14 +#define SCE_STTXT_IDENTIFIER 15 +#define SCE_STTXT_DATETIME 16 +#define SCE_STTXT_VARS 17 +#define SCE_STTXT_PRAGMAS 18 /* --Autogenerated -- end of section automatically generated from Scintilla.iface */ #endif |