diff options
author | kudah <kudahkukarek@gmail.com> | 2013-05-09 23:10:04 +0300 |
---|---|---|
committer | kudah <kudahkukarek@gmail.com> | 2013-05-09 23:10:04 +0300 |
commit | fbf53dce4aca781ab5470b13188cbfbc781f3f99 (patch) | |
tree | 3a4ba18324eb149f594d57a985e553af0e5d86c7 /include/SciLexer.h | |
parent | 3c942cdc536135a3b480547ab687038a61183719 (diff) | |
download | scintilla-mirror-fbf53dce4aca781ab5470b13188cbfbc781f3f99.tar.gz |
* Literate Haskell support
* CPP highlighting is disableable
* CPP is now correctly colored when inside comments and strings
* Some bugs with incremental lexing fixed
* Indented imports folding is now undisableable
Diffstat (limited to 'include/SciLexer.h')
-rw-r--r-- | include/SciLexer.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/SciLexer.h b/include/SciLexer.h index 506848a1c..1ddf628bd 100644 --- a/include/SciLexer.h +++ b/include/SciLexer.h @@ -120,6 +120,7 @@ #define SCLEX_ECL 105 #define SCLEX_OSCRIPT 106 #define SCLEX_VISUALPROLOG 107 +#define SCLEX_LITERATEHASKELL 108 #define SCLEX_AUTOMATIC 1000 #define SCE_P_DEFAULT 0 #define SCE_P_COMMENTLINE 1 @@ -1025,6 +1026,8 @@ #define SCE_HA_PREPROCESSOR 18 #define SCE_HA_STRINGEOL 19 #define SCE_HA_RESERVED_OPERATOR 20 +#define SCE_HA_LITERATE_COMMENT 21 +#define SCE_HA_LITERATE_CODEDELIM 22 #define SCE_T3_DEFAULT 0 #define SCE_T3_X_DEFAULT 1 #define SCE_T3_PREPROCESSOR 2 |