diff options
author | XhmikosR <xhmikosr@users.sourceforge.net> | 2010-11-14 00:36:20 +0000 |
---|---|---|
committer | XhmikosR <xhmikosr@users.sourceforge.net> | 2010-11-14 00:36:20 +0000 |
commit | 003bf1ed14a32a70f10efa9910f232160cc8e504 (patch) | |
tree | 833d690d416f0e44c69cf70a25da83edc9ba46ae | |
parent | ee24b9f061fc414181d13ba9e4d6c1f6aa9c0791 (diff) | |
download | notepad2-mod-003bf1ed14a32a70f10efa9910f232160cc8e504.zip notepad2-mod-003bf1ed14a32a70f10efa9910f232160cc8e504.tar.gz notepad2-mod-003bf1ed14a32a70f10efa9910f232160cc8e504.tar.bz2 |
add isl and islu file extensions for Inno Setup scripts
git-svn-id: https://notepad2-mod.googlecode.com/svn/trunk@187 28bd50df-7adb-d945-0439-6e466c6a13cc
-rw-r--r-- | src/Styles.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Styles.c b/src/Styles.c index 7202c0c..05be76e 100644 --- a/src/Styles.c +++ b/src/Styles.c @@ -1082,7 +1082,7 @@ KEYWORDLIST KeyWords_INNO = { "", "", "", "" };
-EDITLEXER lexINNO = { SCLEX_INNOSETUP, 63293, L"Inno Setup Script", L"iss", L"", &KeyWords_INNO, {
+EDITLEXER lexINNO = { SCLEX_INNOSETUP, 63293, L"Inno Setup Script", L"iss; isl; islu", L"", &KeyWords_INNO, {
{ STYLE_DEFAULT, 63126, L"Default", L"", L"" },
//{ SCE_INNO_DEFAULT, L"Default", L"", L"" },
{ SCE_INNO_COMMENT, 63127, L"Comment", L"fore:#008000", L"" },
@@ -1105,7 +1105,7 @@ KEYWORDLIST KeyWords_RUBY = { "undef unless until when while yield",
"", "", "", "", "", "", "", "" };
-EDITLEXER lexRUBY = { SCLEX_RUBY, 63304, L"Ruby", L"rb;ruby", L"", &KeyWords_RUBY, {
+EDITLEXER lexRUBY = { SCLEX_RUBY, 63304, L"Ruby", L"rb; ruby", L"", &KeyWords_RUBY, {
{ STYLE_DEFAULT, 63126, L"Default", L"", L"" },
//{ SCE_P_DEFAULT, L"Default", L"", L"" },
{ SCE_P_COMMENTLINE, 63127, L"Comment", L"fore:#007F00", L"" },
|