diff options
author | nyamatongwe <unknown> | 2001-04-11 01:48:54 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2001-04-11 01:48:54 +0000 |
commit | 7a28c364fd8f4028b2aeef1cb12a37cad7ff3d7a (patch) | |
tree | 58da9f60f1645f2c115c50c352c651db9de9039c /include/SciLexer.h | |
parent | af8495c3f8d7c575e9bece7a4dd7e69f70b764dd (diff) | |
download | scintilla-mirror-7a28c364fd8f4028b2aeef1cb12a37cad7ff3d7a.tar.gz |
Patch from Philippe to make 'rem' work in batch files.
Moved lex class values from LexOthers.cxx to Scintilla.iface.
Added recognition of diff output to errorlist lexer so can see in output
pane of SciTE.
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 75af63f58..88e8b954b 100644 --- a/include/SciLexer.h +++ b/include/SciLexer.h @@ -217,6 +217,24 @@ #define SCE_ERR_CMD 4 #define SCE_ERR_BORLAND 5 #define SCE_ERR_PERL 6 +#define SCE_ERR_DIFF_CHANGED 10 +#define SCE_ERR_DIFF_ADDITION 11 +#define SCE_ERR_DIFF_DELETION 12 +#define SCE_ERR_DIFF_MESSAGE 13 +#define SCE_BAT_DEFAULT 0 +#define SCE_BAT_COMMENT 1 +#define SCE_BAT_WORD 2 +#define SCE_BAT_LABEL 3 +#define SCE_BAT_HIDE 4 +#define SCE_BAT_COMMAND 5 +#define SCE_BAT_IDENTIFIER 6 +#define SCE_BAT_OPERATOR 7 +#define SCE_MAKE_DEFAULT 0 +#define SCE_MAKE_COMMENT 1 +#define SCE_MAKE_PREPROCESSOR 2 +#define SCE_MAKE_IDENTIFIER 3 +#define SCE_MAKE_OPERATOR 4 +#define SCE_MAKE_IDEOL 9 #define SCE_CONF_DEFAULT 0 #define SCE_CONF_COMMENT 1 #define SCE_CONF_NUMBER 2 |