From 4da60031f18e7f1d2c124dfbef4ad35b7956afa7 Mon Sep 17 00:00:00 2001 From: Pairi Daiza Date: Mon, 7 Dec 2020 17:48:56 +0100 Subject: [PATCH] + Chg: Maintenance - delete 3 unused files --- .gitattributes | 2 -- _config.yml | 1 - lexlink.js | 54 -------------------------------------------------- 3 files changed, 57 deletions(-) delete mode 100644 .gitattributes delete mode 100644 _config.yml delete mode 100644 lexlink.js diff --git a/.gitattributes b/.gitattributes deleted file mode 100644 index 3f90bdf54..000000000 --- a/.gitattributes +++ /dev/null @@ -1,2 +0,0 @@ -*.sh text eol=lf -*.bat text eol=crlf diff --git a/_config.yml b/_config.yml deleted file mode 100644 index c4192631f..000000000 --- a/_config.yml +++ /dev/null @@ -1 +0,0 @@ -theme: jekyll-theme-cayman \ No newline at end of file diff --git a/lexlink.js b/lexlink.js deleted file mode 100644 index a0b88c67e..000000000 --- a/lexlink.js +++ /dev/null @@ -1,54 +0,0 @@ -/* - Comment lexer modules from "scintilla\src\Catalogue.cxx" not used by Notepad2 - (c) Florian Balmer 2011 -*/ - - var lex = new Array( - "lmAHK", - "lmAsm", - "lmAU3", - "lmAVS", - "lmBash", - "lmBatch", - "lmCmake", - "lmCoffeeScript", - "lmConf", - "lmCPP", - "lmCss", - "lmDiff", - "lmHTML", - "lmInno", - "lmLatex", - "lmLua", - "lmMake", - "lmMarkdown", - "lmNsis", - "lmNull", - "lmPascal", - "lmPerl", - "lmPowerShell", - "lmProps", - "lmPython", - "lmRuby", - "lmSQL", - "lmTCL", - "lmVB", - "lmVBScript", - "lmXML", - "lmYAML", - "lmVHDL" - ); - - var fso = new ActiveXObject("Scripting.FileSystemObject"); - var fh = fso.OpenTextFile("scintilla\\src\\Catalogue.cxx",1,0); - if (!fh.AtEndOfStream) { - var str = fh.ReadAll(); - str = str.replace( - /^(\s*)\/\/(LINK_LEXER)/gim, - "$1$2"); - var re = new RegExp("^(\\s*)(LINK_LEXER\\((?!"+lex.join("|")+")\\w+\\);)","gim"); - str = str.replace(re,"$1//$2"); - fh.Close(); - var fh = fso.OpenTextFile("scintilla\\src\\Catalogue.cxx",2,0); - fh.Write(str); - }