diff options
author | nyamatongwe <devnull@localhost> | 2003-07-30 12:56:36 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2003-07-30 12:56:36 +0000 |
commit | e6c4788a0561b889e65545c8039e24c8cdb862ab (patch) | |
tree | 92e337c95b3be7e17658876160a3a0ae6cf3de1e /include/SciLexer.h | |
parent | bc68ca9ccce8317471cdb15d83bc13d10322be45 (diff) | |
download | scintilla-mirror-e6c4788a0561b889e65545c8039e24c8cdb862ab.tar.gz |
NSIS scripting language support from Angelo Mandato.
Diffstat (limited to 'include/SciLexer.h')
-rw-r--r-- | include/SciLexer.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/include/SciLexer.h b/include/SciLexer.h index edf63c4f1..009c046fe 100644 --- a/include/SciLexer.h +++ b/include/SciLexer.h @@ -57,6 +57,7 @@ #define SCLEX_LOUT 40 #define SCLEX_ESCRIPT 41 #define SCLEX_PS 42 +#define SCLEX_NSIS 43 #define SCLEX_AUTOMATIC 1000 #define SCE_P_DEFAULT 0 #define SCE_P_COMMENTLINE 1 @@ -503,6 +504,20 @@ #define SCE_PS_HEXSTRING 13 #define SCE_PS_BASE85STRING 14 #define SCE_PS_BADSTRINGCHAR 15 +#define SCE_NSIS_DEFAULT 0 +#define SCE_NSIS_COMMENT 1 +#define SCE_NSIS_STRINGDQ 2 +#define SCE_NSIS_STRINGLQ 3 +#define SCE_NSIS_STRINGRQ 4 +#define SCE_NSIS_FUNCTION 5 +#define SCE_NSIS_VARIABLE 6 +#define SCE_NSIS_LABEL 7 +#define SCE_NSIS_USERDEFINED 8 +#define SCE_NSIS_SECTIONDEF 9 +#define SCE_NSIS_SUBSECTIONDEF 10 +#define SCE_NSIS_IFDEFINEDEF 11 +#define SCE_NSIS_MACRODEF 12 +#define SCE_NSIS_STRINGVAR 13 //--Autogenerated -- end of section automatically generated from Scintilla.iface #endif |