├── .gitattributes ├── .gitignore ├── Connect.png ├── Generated.png ├── KDbgEngExt ├── KDbgEngExt.cpp ├── KDbgEngExt.h ├── KDbgEngExt.rc ├── KDbgEngExt.vcxproj ├── KDbgEngExt.vcxproj.filters ├── common.h ├── config.json ├── crypto.cpp ├── crypto.h ├── dllmain.cpp ├── framework.h ├── jconf.h ├── netutils.cpp ├── netutils.h ├── nlohmann │ └── json.hpp ├── pch.cpp ├── pch.h ├── resource.h ├── server.cpp ├── server.h ├── utils.cpp ├── utils.h ├── winsock.cpp └── winsock.h ├── KReClassEx.sln ├── KReClassEx ├── AboutDlg.cpp ├── AboutDlg.h ├── BitArray.h ├── ClassDependencyGraph.cpp ├── ClassDependencyGraph.h ├── ClassView.cpp ├── ClassView.h ├── ClassesDlg.cpp ├── ClassesDlg.h ├── CustomEdit.cpp ├── CustomEdit.h ├── CustomToolTip.cpp ├── CustomToolTip.h ├── EditDlg.cpp ├── EditDlg.h ├── HotSpot.h ├── Interfaces.h ├── KReClassEx.cpp ├── KReClassEx.h ├── KReClassEx.rc ├── KReClassEx.vcxproj ├── KReClassEx.vcxproj.filters ├── MainFrm.cpp ├── MainFrm.h ├── Memory.h ├── NodeArray.cpp ├── NodeArray.h ├── NodeBase.cpp ├── NodeBase.h ├── NodeBits.cpp ├── NodeBits.h ├── NodeByte.cpp ├── NodeByte.h ├── NodeCharPtr.cpp ├── NodeCharPtr.h ├── NodeClass.cpp ├── NodeClass.h ├── NodeClassInstance.cpp ├── NodeClassInstance.h ├── NodeCustom.cpp ├── NodeCustom.h ├── NodeDWORD.cpp ├── NodeDWORD.h ├── NodeDouble.cpp ├── NodeDouble.h ├── NodeFloat.cpp ├── NodeFloat.h ├── NodeFunction.cpp ├── NodeFunction.h ├── NodeFunctionPtr.cpp ├── NodeFunctionPtr.h ├── NodeHex16.cpp ├── NodeHex16.h ├── NodeHex32.cpp ├── NodeHex32.h ├── NodeHex64.cpp ├── NodeHex64.h ├── NodeHex8.cpp ├── NodeHex8.h ├── NodeInt16.cpp ├── NodeInt16.h ├── NodeInt32.cpp ├── NodeInt32.h ├── NodeInt64.cpp ├── NodeInt64.h ├── NodeInt8.cpp ├── NodeInt8.h ├── NodeListEntry.cpp ├── NodeListEntry.h ├── NodeMatrix.cpp ├── NodeMatrix.h ├── NodePtr.cpp ├── NodePtr.h ├── NodePtrArray.cpp ├── NodePtrArray.h ├── NodeQWORD.cpp ├── NodeQWORD.h ├── NodeQuat.cpp ├── NodeQuat.h ├── NodeText.cpp ├── NodeText.h ├── NodeType.cpp ├── NodeTypes.h ├── NodeUnicode.cpp ├── NodeUnicode.h ├── NodeVTable.cpp ├── NodeVTable.h ├── NodeVec2.cpp ├── NodeVec2.h ├── NodeVec3.cpp ├── NodeVec3.h ├── NodeWCharPtr.cpp ├── NodeWCharPtr.h ├── NodeWORD.cpp ├── NodeWORD.h ├── Nodes.h ├── Ribbon.bml ├── Ribbon.h ├── Ribbon.rc ├── Ribbon.xml ├── ScintillaCtrl.h ├── ScintillaView.cpp ├── ScintillaView.h ├── config.json ├── crypto.cpp ├── crypto.h ├── jconf.h ├── local.cpp ├── local.h ├── netutils.cpp ├── netutils.h ├── nlohmann │ └── json.hpp ├── packages.config ├── res │ ├── KReClassEx.ico │ ├── Undo.bmp │ ├── home_large_class.bmp │ ├── home_large_console.bmp │ ├── home_large_edit.bmp │ ├── home_large_generate.bmp │ ├── home_large_modules.bmp │ ├── home_large_notes.bmp │ ├── home_large_reset.bmp │ ├── home_large_search.bmp │ ├── home_large_select.bmp │ ├── home_small_clean_up.bmp │ ├── home_small_code.bmp │ ├── home_small_delete.bmp │ ├── home_small_footer.bmp │ ├── home_small_header.bmp │ ├── home_small_typedef.bmp │ ├── icons │ │ ├── add.ico │ │ ├── array.ico │ │ ├── arrow_icon.ico │ │ ├── camera.ico │ │ ├── close.ico │ │ ├── closed.ico │ │ ├── custom.ico │ │ ├── enum.ico │ │ ├── exchange.ico │ │ ├── float.ico │ │ ├── general_class_VS.ico │ │ ├── general_interface_VS.ico │ │ ├── general_method_VS.ico │ │ ├── left.ico │ │ ├── list_entry.ico │ │ ├── matrix.ico │ │ ├── open.ico │ │ ├── pointer.ico │ │ ├── right.ico │ │ ├── signed.ico │ │ ├── speles_random_ico.ico │ │ ├── text.ico │ │ ├── unsigned.ico │ │ └── vector.ico │ ├── toolbar.bmp │ ├── toolbar_add.bmp │ ├── toolbar_add1024.bmp │ ├── toolbar_add2048.bmp │ ├── toolbar_add64.bmp │ ├── toolbar_add8.bmp │ ├── toolbar_array.bmp │ ├── toolbar_ascii.bmp │ ├── toolbar_bits.bmp │ ├── toolbar_byte.bmp │ ├── toolbar_class.bmp │ ├── toolbar_custom.bmp │ ├── toolbar_delete.bmp │ ├── toolbar_double.bmp │ ├── toolbar_dword.bmp │ ├── toolbar_float.bmp │ ├── toolbar_function.bmp │ ├── toolbar_function_ptr.bmp │ ├── toolbar_hex16.bmp │ ├── toolbar_hex32.bmp │ ├── toolbar_hex64.bmp │ ├── toolbar_hex8.bmp │ ├── toolbar_hide.bmp │ ├── toolbar_insert.bmp │ ├── toolbar_insert1024.bmp │ ├── toolbar_insert2048.bmp │ ├── toolbar_insert64.bmp │ ├── toolbar_insert8.bmp │ ├── toolbar_int16.bmp │ ├── toolbar_int32.bmp │ ├── toolbar_int64.bmp │ ├── toolbar_int8.bmp │ ├── toolbar_list_entry.bmp │ ├── toolbar_matrix.bmp │ ├── toolbar_parray.bmp │ ├── toolbar_pchar.bmp │ ├── toolbar_pointer.bmp │ ├── toolbar_pwchar.bmp │ ├── toolbar_qword.bmp │ ├── toolbar_show.bmp │ ├── toolbar_unicode.bmp │ ├── toolbar_vec2.bmp │ ├── toolbar_vec3.bmp │ ├── toolbar_vec4.bmp │ ├── toolbar_vtable.bmp │ └── toolbar_word.bmp ├── resource.h ├── stdafx.cpp ├── stdafx.h ├── utils.cpp ├── utils.h ├── winsock.cpp └── winsock.h ├── LICENSE ├── Main.png ├── README.md ├── ida.png ├── lexilla ├── .gitattributes ├── .github │ └── workflows │ │ ├── build-check-macos.yml │ │ ├── build-check-win32.yml │ │ └── build-check.yml ├── .gitignore ├── .travis.yml ├── CONTRIBUTING ├── License.txt ├── README ├── access │ ├── LexillaAccess.cxx │ ├── LexillaAccess.h │ └── README ├── cppcheck.suppress ├── delbin.bat ├── doc │ ├── Lexilla.html │ ├── LexillaDoc.html │ ├── LexillaDownload.html │ ├── LexillaHistory.html │ ├── LexillaLogo.png │ └── LexillaLogo2x.png ├── examples │ ├── CheckLexilla │ │ ├── CheckLexilla.c │ │ └── makefile │ └── SimpleLexer │ │ ├── SimpleLexer.cxx │ │ └── makefile ├── include │ ├── LexicalStyles.iface │ ├── Lexilla.h │ └── SciLexer.h ├── lexers │ ├── LexA68k.cxx │ ├── LexAPDL.cxx │ ├── LexASY.cxx │ ├── LexAU3.cxx │ ├── LexAVE.cxx │ ├── LexAVS.cxx │ ├── LexAbaqus.cxx │ ├── LexAda.cxx │ ├── LexAsciidoc.cxx │ ├── LexAsm.cxx │ ├── LexAsn1.cxx │ ├── LexBaan.cxx │ ├── LexBash.cxx │ ├── LexBasic.cxx │ ├── LexBatch.cxx │ ├── LexBibTeX.cxx │ ├── LexBullant.cxx │ ├── LexCIL.cxx │ ├── LexCLW.cxx │ ├── LexCOBOL.cxx │ ├── LexCPP.cxx │ ├── LexCSS.cxx │ ├── LexCaml.cxx │ ├── LexCmake.cxx │ ├── LexCoffeeScript.cxx │ ├── LexConf.cxx │ ├── LexCrontab.cxx │ ├── LexCsound.cxx │ ├── LexD.cxx │ ├── LexDMAP.cxx │ ├── LexDMIS.cxx │ ├── LexDataflex.cxx │ ├── LexDiff.cxx │ ├── LexECL.cxx │ ├── LexEDIFACT.cxx │ ├── LexEScript.cxx │ ├── LexEiffel.cxx │ ├── LexErlang.cxx │ ├── LexErrorList.cxx │ ├── LexFSharp.cxx │ ├── LexFlagship.cxx │ ├── LexForth.cxx │ ├── LexFortran.cxx │ ├── LexGAP.cxx │ ├── LexGDScript.cxx │ ├── LexGui4Cli.cxx │ ├── LexHTML.cxx │ ├── LexHaskell.cxx │ ├── LexHex.cxx │ ├── LexHollywood.cxx │ ├── LexIndent.cxx │ ├── LexInno.cxx │ ├── LexJSON.cxx │ ├── LexJulia.cxx │ ├── LexKVIrc.cxx │ ├── LexKix.cxx │ ├── LexLaTeX.cxx │ ├── LexLisp.cxx │ ├── LexLout.cxx │ ├── LexLua.cxx │ ├── LexMMIXAL.cxx │ ├── LexMPT.cxx │ ├── LexMSSQL.cxx │ ├── LexMagik.cxx │ ├── LexMake.cxx │ ├── LexMarkdown.cxx │ ├── LexMatlab.cxx │ ├── LexMaxima.cxx │ ├── LexMetapost.cxx │ ├── LexModula.cxx │ ├── LexMySQL.cxx │ ├── LexNim.cxx │ ├── LexNimrod.cxx │ ├── LexNsis.cxx │ ├── LexNull.cxx │ ├── LexOScript.cxx │ ├── LexOpal.cxx │ ├── LexPB.cxx │ ├── LexPLM.cxx │ ├── LexPO.cxx │ ├── LexPOV.cxx │ ├── LexPS.cxx │ ├── LexPascal.cxx │ ├── LexPerl.cxx │ ├── LexPowerPro.cxx │ ├── LexPowerShell.cxx │ ├── LexProgress.cxx │ ├── LexProps.cxx │ ├── LexPython.cxx │ ├── LexR.cxx │ ├── LexRaku.cxx │ ├── LexRebol.cxx │ ├── LexRegistry.cxx │ ├── LexRuby.cxx │ ├── LexRust.cxx │ ├── LexSAS.cxx │ ├── LexSML.cxx │ ├── LexSQL.cxx │ ├── LexSTTXT.cxx │ ├── LexScriptol.cxx │ ├── LexSmalltalk.cxx │ ├── LexSorcus.cxx │ ├── LexSpecman.cxx │ ├── LexSpice.cxx │ ├── LexStata.cxx │ ├── LexTACL.cxx │ ├── LexTADS3.cxx │ ├── LexTAL.cxx │ ├── LexTCL.cxx │ ├── LexTCMD.cxx │ ├── LexTeX.cxx │ ├── LexTxt2tags.cxx │ ├── LexVB.cxx │ ├── LexVHDL.cxx │ ├── LexVerilog.cxx │ ├── LexVisualProlog.cxx │ ├── LexX12.cxx │ └── LexYAML.cxx ├── lexlib │ ├── Accessor.cxx │ ├── Accessor.h │ ├── CatalogueModules.h │ ├── CharacterCategory.cxx │ ├── CharacterCategory.h │ ├── CharacterSet.cxx │ ├── CharacterSet.h │ ├── DefaultLexer.cxx │ ├── DefaultLexer.h │ ├── LexAccessor.cxx │ ├── LexAccessor.h │ ├── LexerBase.cxx │ ├── LexerBase.h │ ├── LexerModule.cxx │ ├── LexerModule.h │ ├── LexerNoExceptions.cxx │ ├── LexerNoExceptions.h │ ├── LexerSimple.cxx │ ├── LexerSimple.h │ ├── OptionSet.h │ ├── PropSetSimple.cxx │ ├── PropSetSimple.h │ ├── SparseState.h │ ├── StringCopy.h │ ├── StyleContext.cxx │ ├── StyleContext.h │ ├── SubStyles.h │ ├── WordList.cxx │ └── WordList.h ├── scripts │ ├── HeaderOrder.txt │ ├── LexFacer.py │ ├── LexillaData.py │ ├── LexillaGen.py │ ├── LexillaLogo.py │ ├── PromoteNew.bat │ ├── RunTest.bat │ └── RunTest.sh ├── src │ ├── DepGen.py │ ├── Lexilla.cxx │ ├── Lexilla.def │ ├── Lexilla.pro │ ├── Lexilla.vcxproj │ ├── Lexilla │ │ ├── Info.plist │ │ └── Lexilla.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── LexillaVersion.rc │ ├── deps.mak │ ├── lexilla.mak │ ├── makefile │ └── nmdeps.mak ├── test │ ├── README │ ├── TestDocument.cxx │ ├── TestDocument.h │ ├── TestLexers.cxx │ ├── TestLexers.vcxproj │ ├── examples │ │ ├── asciidoc │ │ │ ├── AllStyles.adoc │ │ │ ├── AllStyles.adoc.folded │ │ │ ├── AllStyles.adoc.styled │ │ │ └── SciTE.properties │ │ ├── bash │ │ │ ├── AllStyles.bsh │ │ │ ├── AllStyles.bsh.folded │ │ │ ├── AllStyles.bsh.styled │ │ │ ├── Issue180.bsh │ │ │ ├── Issue180.bsh.folded │ │ │ ├── Issue180.bsh.styled │ │ │ ├── Issue182.bsh │ │ │ ├── Issue182.bsh.folded │ │ │ ├── Issue182.bsh.styled │ │ │ ├── Issue184.bsh │ │ │ ├── Issue184.bsh.folded │ │ │ ├── Issue184.bsh.styled │ │ │ ├── Issue184Copy.bsh │ │ │ ├── Issue184Copy.bsh.folded │ │ │ ├── Issue184Copy.bsh.styled │ │ │ ├── Nested.bsh │ │ │ ├── Nested.bsh.folded │ │ │ ├── Nested.bsh.styled │ │ │ ├── NestedRich.bsh │ │ │ ├── NestedRich.bsh.folded │ │ │ ├── NestedRich.bsh.styled │ │ │ ├── NestedStyledInside.bsh │ │ │ ├── NestedStyledInside.bsh.folded │ │ │ ├── NestedStyledInside.bsh.styled │ │ │ ├── SciTE.properties │ │ │ ├── x.bsh │ │ │ ├── x.bsh.folded │ │ │ └── x.bsh.styled │ │ ├── batch │ │ │ ├── Issue115.bat │ │ │ ├── Issue115.bat.folded │ │ │ ├── Issue115.bat.styled │ │ │ ├── SciTE.properties │ │ │ ├── x.bat │ │ │ ├── x.bat.folded │ │ │ └── x.bat.styled │ │ ├── caml │ │ │ ├── AllStyles.ml │ │ │ ├── AllStyles.ml.folded │ │ │ ├── AllStyles.ml.styled │ │ │ └── SciTE.properties │ │ ├── cmake │ │ │ ├── Bug77_0.cmake │ │ │ ├── Bug77_0.cmake.folded │ │ │ ├── Bug77_0.cmake.styled │ │ │ ├── Bug77_1.cmake │ │ │ ├── Bug77_1.cmake.folded │ │ │ ├── Bug77_1.cmake.styled │ │ │ └── SciTE.properties │ │ ├── cpp │ │ │ ├── 130NonAsciiKeyword.cxx │ │ │ ├── 130NonAsciiKeyword.cxx.folded │ │ │ ├── 130NonAsciiKeyword.cxx.styled │ │ │ ├── 149KeywordCase.cxx │ │ │ ├── 149KeywordCase.cxx.folded │ │ │ ├── 149KeywordCase.cxx.styled │ │ │ ├── AllStyles.cxx │ │ │ ├── AllStyles.cxx.folded │ │ │ ├── AllStyles.cxx.styled │ │ │ ├── Bug2245.cxx │ │ │ ├── Bug2245.cxx.folded │ │ │ ├── Bug2245.cxx.styled │ │ │ ├── SciTE.properties │ │ │ ├── x.cxx │ │ │ ├── x.cxx.folded │ │ │ └── x.cxx.styled │ │ ├── css │ │ │ ├── AllStyles.css │ │ │ ├── AllStyles.css.folded │ │ │ ├── AllStyles.css.styled │ │ │ └── SciTE.properties │ │ ├── d │ │ │ ├── SciTE.properties │ │ │ ├── x.d │ │ │ ├── x.d.folded │ │ │ └── x.d.styled │ │ ├── diff │ │ │ ├── AllStyles.diff │ │ │ ├── AllStyles.diff.folded │ │ │ ├── AllStyles.diff.styled │ │ │ ├── LongLine.diff │ │ │ ├── LongLine.diff.folded │ │ │ ├── LongLine.diff.styled │ │ │ └── SciTE.properties │ │ ├── erlang │ │ │ ├── AllStyles.erl │ │ │ ├── AllStyles.erl.folded │ │ │ ├── AllStyles.erl.styled │ │ │ └── SciTE.properties │ │ ├── errorlist │ │ │ ├── AllStyles.err │ │ │ ├── AllStyles.err.folded │ │ │ ├── AllStyles.err.styled │ │ │ └── SciTE.properties │ │ ├── fsharp │ │ │ ├── FmtSpecs.fs │ │ │ ├── FmtSpecs.fs.folded │ │ │ ├── FmtSpecs.fs.styled │ │ │ ├── Issue56.fs │ │ │ ├── Issue56.fs.folded │ │ │ ├── Issue56.fs.styled │ │ │ ├── Issue93.fs │ │ │ ├── Issue93.fs.folded │ │ │ ├── Issue93.fs.styled │ │ │ ├── Literals.fs │ │ │ ├── Literals.fs.folded │ │ │ ├── Literals.fs.styled │ │ │ ├── SciTE.properties │ │ │ ├── x.fs │ │ │ ├── x.fs.folded │ │ │ └── x.fs.styled │ │ ├── gdscript │ │ │ ├── AllStyles.gd │ │ │ ├── AllStyles.gd.folded │ │ │ ├── AllStyles.gd.styled │ │ │ ├── NodePath.gd │ │ │ ├── NodePath.gd.folded │ │ │ ├── NodePath.gd.styled │ │ │ └── SciTE.properties │ │ ├── gui4cli │ │ │ ├── AllStyles.gui │ │ │ ├── AllStyles.gui.folded │ │ │ ├── AllStyles.gui.styled │ │ │ └── SciTE.properties │ │ ├── hypertext │ │ │ ├── Bug2207.html │ │ │ ├── Bug2207.html.folded │ │ │ ├── Bug2207.html.styled │ │ │ ├── Bug2219.html │ │ │ ├── Bug2219.html.folded │ │ │ ├── Bug2219.html.styled │ │ │ ├── Issue19.php │ │ │ ├── Issue19.php.folded │ │ │ ├── Issue19.php.styled │ │ │ ├── Issue20Numbers.php │ │ │ ├── Issue20Numbers.php.folded │ │ │ ├── Issue20Numbers.php.styled │ │ │ ├── Issue47.html │ │ │ ├── Issue47.html.folded │ │ │ ├── Issue47.html.styled │ │ │ ├── Issue53.html │ │ │ ├── Issue53.html.folded │ │ │ ├── Issue53.html.styled │ │ │ ├── SciTE.properties │ │ │ ├── ServerBasic.aspx │ │ │ ├── ServerBasic.aspx.folded │ │ │ ├── ServerBasic.aspx.styled │ │ │ ├── ServerJavaScript.aspx │ │ │ ├── ServerJavaScript.aspx.folded │ │ │ ├── ServerJavaScript.aspx.styled │ │ │ ├── apostophe.php │ │ │ ├── apostophe.php.folded │ │ │ ├── apostophe.php.styled │ │ │ ├── x.asp │ │ │ ├── x.asp.folded │ │ │ ├── x.asp.styled │ │ │ ├── x.html │ │ │ ├── x.html.folded │ │ │ ├── x.html.styled │ │ │ ├── x.php │ │ │ ├── x.php.folded │ │ │ └── x.php.styled │ │ ├── inno │ │ │ ├── SciTE.properties │ │ │ ├── x.iss │ │ │ ├── x.iss.folded │ │ │ └── x.iss.styled │ │ ├── json │ │ │ ├── AllStyles.json │ │ │ ├── AllStyles.json.folded │ │ │ ├── AllStyles.json.styled │ │ │ └── SciTE.properties │ │ ├── julia │ │ │ ├── SciTE.properties │ │ │ ├── x.jl │ │ │ ├── x.jl.folded │ │ │ └── x.jl.styled │ │ ├── latex │ │ │ ├── AllStyles.tex │ │ │ ├── AllStyles.tex.folded │ │ │ ├── AllStyles.tex.styled │ │ │ ├── Feature1358.tex │ │ │ ├── Feature1358.tex.folded │ │ │ ├── Feature1358.tex.styled │ │ │ └── SciTE.properties │ │ ├── lua │ │ │ ├── Bug2205.lua │ │ │ ├── Bug2205.lua.folded │ │ │ ├── Bug2205.lua.styled │ │ │ ├── SciTE.properties │ │ │ ├── x.lua │ │ │ ├── x.lua.folded │ │ │ └── x.lua.styled │ │ ├── makefile │ │ │ ├── SciTE.properties │ │ │ ├── longline.mak │ │ │ ├── longline.mak.folded │ │ │ ├── longline.mak.styled │ │ │ ├── x.mak │ │ │ ├── x.mak.folded │ │ │ └── x.mak.styled │ │ ├── markdown │ │ │ ├── AllStyles.md │ │ │ ├── AllStyles.md.folded │ │ │ ├── AllStyles.md.styled │ │ │ ├── Bug1216.md │ │ │ ├── Bug1216.md.folded │ │ │ ├── Bug1216.md.styled │ │ │ ├── Bug2235.md │ │ │ ├── Bug2235.md.folded │ │ │ ├── Bug2235.md.styled │ │ │ ├── Bug2247.md │ │ │ ├── Bug2247.md.folded │ │ │ ├── Bug2247.md.styled │ │ │ ├── HeaderEOLFill_0.md │ │ │ ├── HeaderEOLFill_0.md.folded │ │ │ ├── HeaderEOLFill_0.md.styled │ │ │ ├── HeaderEOLFill_1.md │ │ │ ├── HeaderEOLFill_1.md.folded │ │ │ ├── HeaderEOLFill_1.md.styled │ │ │ ├── Issue117.md │ │ │ ├── Issue117.md.folded │ │ │ ├── Issue117.md.styled │ │ │ └── SciTE.properties │ │ ├── matlab │ │ │ ├── AllStyles.m.matlab │ │ │ ├── AllStyles.m.matlab.folded │ │ │ ├── AllStyles.m.matlab.styled │ │ │ ├── AllStyles.m.octave │ │ │ ├── AllStyles.m.octave.folded │ │ │ ├── AllStyles.m.octave.styled │ │ │ ├── ArgumentsBlock.m.matlab │ │ │ ├── ArgumentsBlock.m.matlab.folded │ │ │ ├── ArgumentsBlock.m.matlab.styled │ │ │ ├── ClassDefinition.m.matlab │ │ │ ├── ClassDefinition.m.matlab.folded │ │ │ ├── ClassDefinition.m.matlab.styled │ │ │ ├── FoldPoints.m.matlab │ │ │ ├── FoldPoints.m.matlab.folded │ │ │ ├── FoldPoints.m.matlab.styled │ │ │ ├── Issue18_EscapeSequence.m.matlab │ │ │ ├── Issue18_EscapeSequence.m.matlab.folded │ │ │ ├── Issue18_EscapeSequence.m.matlab.styled │ │ │ ├── Issue18_EscapeSequence.m.octave │ │ │ ├── Issue18_EscapeSequence.m.octave.folded │ │ │ ├── Issue18_EscapeSequence.m.octave.styled │ │ │ ├── NumericLiterals.m.matlab │ │ │ ├── NumericLiterals.m.matlab.folded │ │ │ ├── NumericLiterals.m.matlab.styled │ │ │ └── SciTE.properties │ │ ├── mmixal │ │ │ ├── AllStyles.mms │ │ │ ├── AllStyles.mms.folded │ │ │ ├── AllStyles.mms.styled │ │ │ ├── SciTE.properties │ │ │ ├── references.mms │ │ │ ├── references.mms.folded │ │ │ ├── references.mms.styled │ │ │ ├── x.mms │ │ │ ├── x.mms.folded │ │ │ └── x.mms.styled │ │ ├── modula │ │ │ ├── 128Endless.m3 │ │ │ ├── 128Endless.m3.folded │ │ │ ├── 128Endless.m3.styled │ │ │ ├── Issue129.m3 │ │ │ ├── Issue129.m3.folded │ │ │ ├── Issue129.m3.styled │ │ │ └── SciTE.properties │ │ ├── mssql │ │ │ ├── AllStyles.tsql │ │ │ ├── AllStyles.tsql.folded │ │ │ ├── AllStyles.tsql.styled │ │ │ ├── Issue87.tsql │ │ │ ├── Issue87.tsql.folded │ │ │ ├── Issue87.tsql.styled │ │ │ ├── Issue90.tsql │ │ │ ├── Issue90.tsql.folded │ │ │ ├── Issue90.tsql.styled │ │ │ ├── SciTE.properties │ │ │ ├── Various.tsql │ │ │ ├── Various.tsql.folded │ │ │ └── Various.tsql.styled │ │ ├── nim │ │ │ ├── SciTE.properties │ │ │ ├── x.nim │ │ │ ├── x.nim.folded │ │ │ └── x.nim.styled │ │ ├── perl │ │ │ ├── SciTE.properties │ │ │ ├── perl-test-5220delta.pl │ │ │ ├── perl-test-5220delta.pl.folded │ │ │ ├── perl-test-5220delta.pl.styled │ │ │ ├── perl-test-sub-prototypes.pl │ │ │ ├── perl-test-sub-prototypes.pl.folded │ │ │ ├── perl-test-sub-prototypes.pl.styled │ │ │ ├── x.pl │ │ │ ├── x.pl.folded │ │ │ └── x.pl.styled │ │ ├── powershell │ │ │ ├── AllStyles.ps1 │ │ │ ├── AllStyles.ps1.folded │ │ │ ├── AllStyles.ps1.styled │ │ │ ├── CharacterTruncation.ps1 │ │ │ ├── CharacterTruncation.ps1.folded │ │ │ ├── CharacterTruncation.ps1.styled │ │ │ ├── NumericLiterals.ps1 │ │ │ ├── NumericLiterals.ps1.folded │ │ │ ├── NumericLiterals.ps1.styled │ │ │ ├── Pull92.ps1 │ │ │ ├── Pull92.ps1.folded │ │ │ ├── Pull92.ps1.styled │ │ │ ├── Pull99Comment.ps1 │ │ │ ├── Pull99Comment.ps1.folded │ │ │ ├── Pull99Comment.ps1.styled │ │ │ └── SciTE.properties │ │ ├── props │ │ │ ├── Issue96Folding.props │ │ │ ├── Issue96Folding.props.folded │ │ │ ├── Issue96Folding.props.styled │ │ │ ├── SciTE.properties │ │ │ ├── example.session │ │ │ ├── example.session.folded │ │ │ └── example.session.styled │ │ ├── python │ │ │ ├── AllStyles.py │ │ │ ├── AllStyles.py.folded │ │ │ ├── AllStyles.py.styled │ │ │ ├── SciTE.properties │ │ │ ├── attributes │ │ │ │ ├── SciTE.properties │ │ │ │ ├── attributes.py │ │ │ │ ├── attributes.py.folded │ │ │ │ └── attributes.py.styled │ │ │ ├── matchcase.py │ │ │ ├── matchcase.py.folded │ │ │ ├── matchcase.py.styled │ │ │ ├── x.py │ │ │ ├── x.py.folded │ │ │ └── x.py.styled │ │ ├── r │ │ │ ├── 102Backticks.r │ │ │ ├── 102Backticks.r.folded │ │ │ ├── 102Backticks.r.styled │ │ │ ├── AllStyles.r │ │ │ ├── AllStyles.r.folded │ │ │ ├── AllStyles.r.styled │ │ │ └── SciTE.properties │ │ ├── raku │ │ │ ├── SciTE.properties │ │ │ ├── x.p6 │ │ │ ├── x.p6.folded │ │ │ └── x.p6.styled │ │ ├── ruby │ │ │ ├── AllStyles.rb │ │ │ ├── AllStyles.rb.folded │ │ │ ├── AllStyles.rb.styled │ │ │ ├── Issue132.rb │ │ │ ├── Issue132.rb.folded │ │ │ ├── Issue132.rb.styled │ │ │ ├── Issue135.rb │ │ │ ├── Issue135.rb.folded │ │ │ ├── Issue135.rb.styled │ │ │ ├── Issue136.rb │ │ │ ├── Issue136.rb.folded │ │ │ ├── Issue136.rb.styled │ │ │ ├── Issue140.rb │ │ │ ├── Issue140.rb.folded │ │ │ ├── Issue140.rb.styled │ │ │ ├── Issue65.rb │ │ │ ├── Issue65.rb.folded │ │ │ ├── Issue65.rb.styled │ │ │ ├── Issue66.rb │ │ │ ├── Issue66.rb.folded │ │ │ ├── Issue66.rb.styled │ │ │ ├── Issue67.rb │ │ │ ├── Issue67.rb.folded │ │ │ ├── Issue67.rb.styled │ │ │ ├── Issue69.rb │ │ │ ├── Issue69.rb.folded │ │ │ ├── Issue69.rb.styled │ │ │ ├── PercentEquals124.rb │ │ │ ├── PercentEquals124.rb.folded │ │ │ ├── PercentEquals124.rb.styled │ │ │ ├── SciTE.properties │ │ │ ├── x.rb │ │ │ ├── x.rb.folded │ │ │ └── x.rb.styled │ │ ├── rust │ │ │ ├── Issue33.rs │ │ │ ├── Issue33.rs.folded │ │ │ ├── Issue33.rs.styled │ │ │ ├── Issue34.rs │ │ │ ├── Issue34.rs.folded │ │ │ ├── Issue34.rs.styled │ │ │ ├── Issue35.rs │ │ │ ├── Issue35.rs.folded │ │ │ ├── Issue35.rs.styled │ │ │ └── SciTE.properties │ │ ├── tcl │ │ │ ├── SciTE.properties │ │ │ ├── x.tcl │ │ │ ├── x.tcl.folded │ │ │ └── x.tcl.styled │ │ ├── vb │ │ │ ├── SciTE.properties │ │ │ ├── x.vb │ │ │ ├── x.vb.folded │ │ │ └── x.vb.styled │ │ ├── vhdl │ │ │ ├── SciTE.properties │ │ │ ├── x.vhd │ │ │ ├── x.vhd.folded │ │ │ └── x.vhd.styled │ │ ├── visualprolog │ │ │ ├── AllStyles.pl │ │ │ ├── AllStyles.pl.folded │ │ │ ├── AllStyles.pl.styled │ │ │ ├── AllStyles.pro │ │ │ ├── AllStyles.pro.folded │ │ │ ├── AllStyles.pro.styled │ │ │ └── SciTE.properties │ │ ├── x12 │ │ │ ├── SciTE.properties │ │ │ ├── empty.x12 │ │ │ ├── empty.x12.folded │ │ │ ├── empty.x12.styled │ │ │ ├── x.x12 │ │ │ ├── x.x12.folded │ │ │ └── x.x12.styled │ │ └── yaml │ │ │ ├── SciTE.properties │ │ │ ├── longline.yaml │ │ │ ├── longline.yaml.folded │ │ │ ├── longline.yaml.styled │ │ │ ├── x.yaml │ │ │ ├── x.yaml.folded │ │ │ └── x.yaml.styled │ ├── makefile │ ├── testlexers.mak │ └── unit │ │ ├── LICENSE_1_0.txt │ │ ├── README │ │ ├── Sci.natvis │ │ ├── SciTE.properties │ │ ├── UnitTester.cxx │ │ ├── UnitTester.vcxproj │ │ ├── catch.hpp │ │ ├── makefile │ │ ├── test.mak │ │ ├── testCharacterSet.cxx │ │ ├── testLexerSimple.cxx │ │ ├── testOptionSet.cxx │ │ ├── testPropSetSimple.cxx │ │ ├── testSparseState.cxx │ │ ├── testWordList.cxx │ │ └── unitTest.cxx ├── tgzsrc ├── version.txt └── zipsrc.bat └── scintilla ├── .editorconfig ├── .hg_archival.txt ├── .hgeol ├── .hgignore ├── .hgtags ├── CONTRIBUTING ├── License.txt ├── README ├── call └── ScintillaCall.cxx ├── cocoa ├── InfoBar.h ├── InfoBar.mm ├── InfoBarCommunicator.h ├── PlatCocoa.h ├── PlatCocoa.mm ├── QuartzTextLayout.h ├── QuartzTextStyle.h ├── QuartzTextStyleAttribute.h ├── Scintilla │ ├── Info.plist │ ├── Scintilla.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── module.modulemap ├── ScintillaCocoa.h ├── ScintillaCocoa.mm ├── ScintillaTest │ ├── AppController.h │ ├── AppController.mm │ ├── Info.plist │ ├── Scintilla-Info.plist │ ├── ScintillaTest.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── TestData.sql │ ├── en.lproj │ │ ├── InfoPlist.strings │ │ └── MainMenu.xib │ └── main.m ├── ScintillaView.h ├── ScintillaView.mm ├── checkbuildosx.sh └── res │ ├── info_bar_bg.png │ ├── info_bar_bg@2x.png │ ├── mac_cursor_busy.png │ ├── mac_cursor_busy@2x.png │ ├── mac_cursor_flipped.png │ └── mac_cursor_flipped@2x.png ├── cppcheck.suppress ├── delbin.bat ├── doc ├── AddSource.txt ├── ChangeHistory.png ├── Design.html ├── Icons.html ├── Indicators.png ├── Lexer.txt ├── Markers.png ├── Privacy.html ├── SciBreak.jpg ├── SciCoding.html ├── SciRest.jpg ├── SciTEIco.png ├── SciWord.jpg ├── Scintilla5Migration.html ├── ScintillaDoc.html ├── ScintillaDownload.html ├── ScintillaHistory.html ├── ScintillaLogo.png ├── ScintillaLogo2x.png ├── ScintillaRelated.html ├── ScintillaToDo.html ├── ScintillaUsage.html ├── StadiumVariants.png ├── Steps.html ├── StyleMetadata.html ├── annotations.png ├── eolannotation.png ├── index.html └── styledmargin.png ├── gtk ├── Converter.h ├── DepGen.py ├── PlatGTK.cxx ├── ScintillaGTK.cxx ├── ScintillaGTK.h ├── ScintillaGTKAccessible.cxx ├── ScintillaGTKAccessible.h ├── Wrappers.h ├── deps.mak ├── makefile ├── scintilla-marshal.c ├── scintilla-marshal.h └── scintilla-marshal.list ├── include ├── ILexer.h ├── ILoader.h ├── Sci_Position.h ├── Scintilla.h ├── Scintilla.iface ├── ScintillaCall.h ├── ScintillaMessages.h ├── ScintillaStructures.h ├── ScintillaTypes.h └── ScintillaWidget.h ├── qt ├── README ├── ScintillaEdit │ ├── ScintillaDocument.cpp │ ├── ScintillaDocument.h │ ├── ScintillaEdit.cpp.template │ ├── ScintillaEdit.h.template │ ├── ScintillaEdit.pro │ └── WidgetGen.py └── ScintillaEditBase │ ├── Notes.txt │ ├── PlatQt.cpp │ ├── PlatQt.h │ ├── ScintillaEditBase.cpp │ ├── ScintillaEditBase.h │ ├── ScintillaEditBase.pro │ ├── ScintillaQt.cpp │ └── ScintillaQt.h ├── scripts ├── CheckMentioned.py ├── Dependencies.py ├── Face.py ├── FileGenerator.py ├── GenerateCaseConvert.py ├── GenerateCharacterCategory.py ├── HFacer.py ├── HeaderCheck.py ├── HeaderOrder.txt ├── LexGen.py ├── ScintillaAPIFacer.py ├── ScintillaData.py ├── __init__.py └── archive.sh ├── src ├── AutoComplete.cxx ├── AutoComplete.h ├── CallTip.cxx ├── CallTip.h ├── CaseConvert.cxx ├── CaseConvert.h ├── CaseFolder.cxx ├── CaseFolder.h ├── CellBuffer.cxx ├── CellBuffer.h ├── ChangeHistory.cxx ├── ChangeHistory.h ├── CharClassify.cxx ├── CharClassify.h ├── CharacterCategoryMap.cxx ├── CharacterCategoryMap.h ├── CharacterType.cxx ├── CharacterType.h ├── ContractionState.cxx ├── ContractionState.h ├── DBCS.cxx ├── DBCS.h ├── Debugging.h ├── Decoration.cxx ├── Decoration.h ├── Document.cxx ├── Document.h ├── EditModel.cxx ├── EditModel.h ├── EditView.cxx ├── EditView.h ├── Editor.cxx ├── Editor.h ├── ElapsedPeriod.h ├── Geometry.cxx ├── Geometry.h ├── Indicator.cxx ├── Indicator.h ├── KeyMap.cxx ├── KeyMap.h ├── LineMarker.cxx ├── LineMarker.h ├── MarginView.cxx ├── MarginView.h ├── Partitioning.h ├── PerLine.cxx ├── PerLine.h ├── Platform.h ├── Position.h ├── PositionCache.cxx ├── PositionCache.h ├── RESearch.cxx ├── RESearch.h ├── RunStyles.cxx ├── RunStyles.h ├── SciTE.properties ├── ScintillaBase.cxx ├── ScintillaBase.h ├── Selection.cxx ├── Selection.h ├── SparseVector.h ├── SplitVector.h ├── Style.cxx ├── Style.h ├── UniConversion.cxx ├── UniConversion.h ├── UniqueString.cxx ├── UniqueString.h ├── ViewStyle.cxx ├── ViewStyle.h ├── XPM.cxx └── XPM.h ├── test ├── MessageNumbers.py ├── README ├── ScintillaCallable.py ├── XiteMenu.py ├── XiteWin.py ├── gi │ ├── Scintilla-0.1.gir.good │ ├── filter-scintilla-h.py │ ├── gi-test.py │ └── makefile ├── performanceTests.py ├── simpleTests.py ├── unit │ ├── LICENSE_1_0.txt │ ├── README │ ├── Sci.natvis │ ├── SciTE.properties │ ├── UnitTester.cxx │ ├── UnitTester.vcxproj │ ├── catch.hpp │ ├── makefile │ ├── test.mak │ ├── testCellBuffer.cxx │ ├── testCharClassify.cxx │ ├── testCharacterCategoryMap.cxx │ ├── testContractionState.cxx │ ├── testDecoration.cxx │ ├── testDocument.cxx │ ├── testGeometry.cxx │ ├── testPartitioning.cxx │ ├── testPerLine.cxx │ ├── testRESearch.cxx │ ├── testRunStyles.cxx │ ├── testSparseVector.cxx │ ├── testSplitVector.cxx │ ├── testUniConversion.cxx │ └── unitTest.cxx ├── win32Tests.py └── xite.py ├── tgzsrc ├── version.txt ├── win32 ├── DepGen.py ├── HanjaDic.cxx ├── HanjaDic.h ├── PlatWin.cxx ├── PlatWin.h ├── SciTE.properties ├── ScintRes.rc ├── Scintilla.def ├── Scintilla.vcxproj ├── Scintilla.vcxproj.user ├── ScintillaDLL.cxx ├── ScintillaWin.cxx ├── ScintillaWin.h ├── WinTypes.h ├── deps.mak ├── makefile ├── nmdeps.mak └── scintilla.mak └── zipsrc.bat /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/.gitignore -------------------------------------------------------------------------------- /Connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/Connect.png -------------------------------------------------------------------------------- /Generated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/Generated.png -------------------------------------------------------------------------------- /KDbgEngExt/KDbgEngExt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KDbgEngExt/KDbgEngExt.cpp -------------------------------------------------------------------------------- /KDbgEngExt/KDbgEngExt.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | void __cdecl 4 | dprintf(PCSTR Format, ...); -------------------------------------------------------------------------------- /KDbgEngExt/KDbgEngExt.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KDbgEngExt/KDbgEngExt.rc -------------------------------------------------------------------------------- /KDbgEngExt/KDbgEngExt.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KDbgEngExt/KDbgEngExt.vcxproj -------------------------------------------------------------------------------- /KDbgEngExt/KDbgEngExt.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KDbgEngExt/KDbgEngExt.vcxproj.filters -------------------------------------------------------------------------------- /KDbgEngExt/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KDbgEngExt/common.h -------------------------------------------------------------------------------- /KDbgEngExt/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KDbgEngExt/config.json -------------------------------------------------------------------------------- /KDbgEngExt/crypto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KDbgEngExt/crypto.cpp -------------------------------------------------------------------------------- /KDbgEngExt/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KDbgEngExt/crypto.h -------------------------------------------------------------------------------- /KDbgEngExt/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KDbgEngExt/dllmain.cpp -------------------------------------------------------------------------------- /KDbgEngExt/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KDbgEngExt/framework.h -------------------------------------------------------------------------------- /KDbgEngExt/jconf.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "netutils.h" 4 | 5 | #define MIN_TCP_IDLE_TIMEOUT (24 * 3600) -------------------------------------------------------------------------------- /KDbgEngExt/netutils.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" -------------------------------------------------------------------------------- /KDbgEngExt/netutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KDbgEngExt/netutils.h -------------------------------------------------------------------------------- /KDbgEngExt/nlohmann/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KDbgEngExt/nlohmann/json.hpp -------------------------------------------------------------------------------- /KDbgEngExt/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KDbgEngExt/pch.cpp -------------------------------------------------------------------------------- /KDbgEngExt/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KDbgEngExt/pch.h -------------------------------------------------------------------------------- /KDbgEngExt/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KDbgEngExt/resource.h -------------------------------------------------------------------------------- /KDbgEngExt/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KDbgEngExt/server.cpp -------------------------------------------------------------------------------- /KDbgEngExt/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KDbgEngExt/server.h -------------------------------------------------------------------------------- /KDbgEngExt/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KDbgEngExt/utils.cpp -------------------------------------------------------------------------------- /KDbgEngExt/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KDbgEngExt/utils.h -------------------------------------------------------------------------------- /KDbgEngExt/winsock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KDbgEngExt/winsock.cpp -------------------------------------------------------------------------------- /KDbgEngExt/winsock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KDbgEngExt/winsock.h -------------------------------------------------------------------------------- /KReClassEx.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx.sln -------------------------------------------------------------------------------- /KReClassEx/AboutDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/AboutDlg.cpp -------------------------------------------------------------------------------- /KReClassEx/AboutDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/AboutDlg.h -------------------------------------------------------------------------------- /KReClassEx/BitArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/BitArray.h -------------------------------------------------------------------------------- /KReClassEx/ClassDependencyGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/ClassDependencyGraph.cpp -------------------------------------------------------------------------------- /KReClassEx/ClassDependencyGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/ClassDependencyGraph.h -------------------------------------------------------------------------------- /KReClassEx/ClassView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/ClassView.cpp -------------------------------------------------------------------------------- /KReClassEx/ClassView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/ClassView.h -------------------------------------------------------------------------------- /KReClassEx/ClassesDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/ClassesDlg.cpp -------------------------------------------------------------------------------- /KReClassEx/ClassesDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/ClassesDlg.h -------------------------------------------------------------------------------- /KReClassEx/CustomEdit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/CustomEdit.cpp -------------------------------------------------------------------------------- /KReClassEx/CustomEdit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/CustomEdit.h -------------------------------------------------------------------------------- /KReClassEx/CustomToolTip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/CustomToolTip.cpp -------------------------------------------------------------------------------- /KReClassEx/CustomToolTip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/CustomToolTip.h -------------------------------------------------------------------------------- /KReClassEx/EditDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/EditDlg.cpp -------------------------------------------------------------------------------- /KReClassEx/EditDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/EditDlg.h -------------------------------------------------------------------------------- /KReClassEx/HotSpot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/HotSpot.h -------------------------------------------------------------------------------- /KReClassEx/Interfaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/Interfaces.h -------------------------------------------------------------------------------- /KReClassEx/KReClassEx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/KReClassEx.cpp -------------------------------------------------------------------------------- /KReClassEx/KReClassEx.h: -------------------------------------------------------------------------------- 1 | // KReClassEx.h 2 | -------------------------------------------------------------------------------- /KReClassEx/KReClassEx.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/KReClassEx.rc -------------------------------------------------------------------------------- /KReClassEx/KReClassEx.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/KReClassEx.vcxproj -------------------------------------------------------------------------------- /KReClassEx/KReClassEx.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/KReClassEx.vcxproj.filters -------------------------------------------------------------------------------- /KReClassEx/MainFrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/MainFrm.cpp -------------------------------------------------------------------------------- /KReClassEx/MainFrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/MainFrm.h -------------------------------------------------------------------------------- /KReClassEx/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/Memory.h -------------------------------------------------------------------------------- /KReClassEx/NodeArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeArray.cpp -------------------------------------------------------------------------------- /KReClassEx/NodeArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeArray.h -------------------------------------------------------------------------------- /KReClassEx/NodeBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeBase.cpp -------------------------------------------------------------------------------- /KReClassEx/NodeBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeBase.h -------------------------------------------------------------------------------- /KReClassEx/NodeBits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeBits.cpp -------------------------------------------------------------------------------- /KReClassEx/NodeBits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeBits.h -------------------------------------------------------------------------------- /KReClassEx/NodeByte.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeByte.cpp -------------------------------------------------------------------------------- /KReClassEx/NodeByte.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeByte.h -------------------------------------------------------------------------------- /KReClassEx/NodeCharPtr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeCharPtr.cpp -------------------------------------------------------------------------------- /KReClassEx/NodeCharPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeCharPtr.h -------------------------------------------------------------------------------- /KReClassEx/NodeClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeClass.cpp -------------------------------------------------------------------------------- /KReClassEx/NodeClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeClass.h -------------------------------------------------------------------------------- /KReClassEx/NodeClassInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeClassInstance.cpp -------------------------------------------------------------------------------- /KReClassEx/NodeClassInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeClassInstance.h -------------------------------------------------------------------------------- /KReClassEx/NodeCustom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeCustom.cpp -------------------------------------------------------------------------------- /KReClassEx/NodeCustom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeCustom.h -------------------------------------------------------------------------------- /KReClassEx/NodeDWORD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeDWORD.cpp -------------------------------------------------------------------------------- /KReClassEx/NodeDWORD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeDWORD.h -------------------------------------------------------------------------------- /KReClassEx/NodeDouble.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeDouble.cpp -------------------------------------------------------------------------------- /KReClassEx/NodeDouble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeDouble.h -------------------------------------------------------------------------------- /KReClassEx/NodeFloat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeFloat.cpp -------------------------------------------------------------------------------- /KReClassEx/NodeFloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeFloat.h -------------------------------------------------------------------------------- /KReClassEx/NodeFunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeFunction.cpp -------------------------------------------------------------------------------- /KReClassEx/NodeFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeFunction.h -------------------------------------------------------------------------------- /KReClassEx/NodeFunctionPtr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeFunctionPtr.cpp -------------------------------------------------------------------------------- /KReClassEx/NodeFunctionPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeFunctionPtr.h -------------------------------------------------------------------------------- /KReClassEx/NodeHex16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeHex16.cpp -------------------------------------------------------------------------------- /KReClassEx/NodeHex16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeHex16.h -------------------------------------------------------------------------------- /KReClassEx/NodeHex32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeHex32.cpp -------------------------------------------------------------------------------- /KReClassEx/NodeHex32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeHex32.h -------------------------------------------------------------------------------- /KReClassEx/NodeHex64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeHex64.cpp -------------------------------------------------------------------------------- /KReClassEx/NodeHex64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeHex64.h -------------------------------------------------------------------------------- /KReClassEx/NodeHex8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeHex8.cpp -------------------------------------------------------------------------------- /KReClassEx/NodeHex8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeHex8.h -------------------------------------------------------------------------------- /KReClassEx/NodeInt16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeInt16.cpp -------------------------------------------------------------------------------- /KReClassEx/NodeInt16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeInt16.h -------------------------------------------------------------------------------- /KReClassEx/NodeInt32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeInt32.cpp -------------------------------------------------------------------------------- /KReClassEx/NodeInt32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeInt32.h -------------------------------------------------------------------------------- /KReClassEx/NodeInt64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeInt64.cpp -------------------------------------------------------------------------------- /KReClassEx/NodeInt64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeInt64.h -------------------------------------------------------------------------------- /KReClassEx/NodeInt8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeInt8.cpp -------------------------------------------------------------------------------- /KReClassEx/NodeInt8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeInt8.h -------------------------------------------------------------------------------- /KReClassEx/NodeListEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeListEntry.cpp -------------------------------------------------------------------------------- /KReClassEx/NodeListEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeListEntry.h -------------------------------------------------------------------------------- /KReClassEx/NodeMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeMatrix.cpp -------------------------------------------------------------------------------- /KReClassEx/NodeMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeMatrix.h -------------------------------------------------------------------------------- /KReClassEx/NodePtr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodePtr.cpp -------------------------------------------------------------------------------- /KReClassEx/NodePtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodePtr.h -------------------------------------------------------------------------------- /KReClassEx/NodePtrArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodePtrArray.cpp -------------------------------------------------------------------------------- /KReClassEx/NodePtrArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodePtrArray.h -------------------------------------------------------------------------------- /KReClassEx/NodeQWORD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeQWORD.cpp -------------------------------------------------------------------------------- /KReClassEx/NodeQWORD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeQWORD.h -------------------------------------------------------------------------------- /KReClassEx/NodeQuat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeQuat.cpp -------------------------------------------------------------------------------- /KReClassEx/NodeQuat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeQuat.h -------------------------------------------------------------------------------- /KReClassEx/NodeText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeText.cpp -------------------------------------------------------------------------------- /KReClassEx/NodeText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeText.h -------------------------------------------------------------------------------- /KReClassEx/NodeType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeType.cpp -------------------------------------------------------------------------------- /KReClassEx/NodeTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeTypes.h -------------------------------------------------------------------------------- /KReClassEx/NodeUnicode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeUnicode.cpp -------------------------------------------------------------------------------- /KReClassEx/NodeUnicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeUnicode.h -------------------------------------------------------------------------------- /KReClassEx/NodeVTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeVTable.cpp -------------------------------------------------------------------------------- /KReClassEx/NodeVTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeVTable.h -------------------------------------------------------------------------------- /KReClassEx/NodeVec2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeVec2.cpp -------------------------------------------------------------------------------- /KReClassEx/NodeVec2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeVec2.h -------------------------------------------------------------------------------- /KReClassEx/NodeVec3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeVec3.cpp -------------------------------------------------------------------------------- /KReClassEx/NodeVec3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeVec3.h -------------------------------------------------------------------------------- /KReClassEx/NodeWCharPtr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeWCharPtr.cpp -------------------------------------------------------------------------------- /KReClassEx/NodeWCharPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeWCharPtr.h -------------------------------------------------------------------------------- /KReClassEx/NodeWORD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeWORD.cpp -------------------------------------------------------------------------------- /KReClassEx/NodeWORD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/NodeWORD.h -------------------------------------------------------------------------------- /KReClassEx/Nodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/Nodes.h -------------------------------------------------------------------------------- /KReClassEx/Ribbon.bml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/Ribbon.bml -------------------------------------------------------------------------------- /KReClassEx/Ribbon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/Ribbon.h -------------------------------------------------------------------------------- /KReClassEx/Ribbon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/Ribbon.rc -------------------------------------------------------------------------------- /KReClassEx/Ribbon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/Ribbon.xml -------------------------------------------------------------------------------- /KReClassEx/ScintillaCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/ScintillaCtrl.h -------------------------------------------------------------------------------- /KReClassEx/ScintillaView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/ScintillaView.cpp -------------------------------------------------------------------------------- /KReClassEx/ScintillaView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/ScintillaView.h -------------------------------------------------------------------------------- /KReClassEx/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/config.json -------------------------------------------------------------------------------- /KReClassEx/crypto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/crypto.cpp -------------------------------------------------------------------------------- /KReClassEx/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/crypto.h -------------------------------------------------------------------------------- /KReClassEx/jconf.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #define MAX_CONNECT_TIMEOUT 10 -------------------------------------------------------------------------------- /KReClassEx/local.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/local.cpp -------------------------------------------------------------------------------- /KReClassEx/local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/local.h -------------------------------------------------------------------------------- /KReClassEx/netutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/netutils.cpp -------------------------------------------------------------------------------- /KReClassEx/netutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/netutils.h -------------------------------------------------------------------------------- /KReClassEx/nlohmann/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/nlohmann/json.hpp -------------------------------------------------------------------------------- /KReClassEx/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/packages.config -------------------------------------------------------------------------------- /KReClassEx/res/KReClassEx.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/KReClassEx.ico -------------------------------------------------------------------------------- /KReClassEx/res/Undo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/Undo.bmp -------------------------------------------------------------------------------- /KReClassEx/res/home_large_class.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/home_large_class.bmp -------------------------------------------------------------------------------- /KReClassEx/res/home_large_console.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/home_large_console.bmp -------------------------------------------------------------------------------- /KReClassEx/res/home_large_edit.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/home_large_edit.bmp -------------------------------------------------------------------------------- /KReClassEx/res/home_large_generate.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/home_large_generate.bmp -------------------------------------------------------------------------------- /KReClassEx/res/home_large_modules.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/home_large_modules.bmp -------------------------------------------------------------------------------- /KReClassEx/res/home_large_notes.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/home_large_notes.bmp -------------------------------------------------------------------------------- /KReClassEx/res/home_large_reset.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/home_large_reset.bmp -------------------------------------------------------------------------------- /KReClassEx/res/home_large_search.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/home_large_search.bmp -------------------------------------------------------------------------------- /KReClassEx/res/home_large_select.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/home_large_select.bmp -------------------------------------------------------------------------------- /KReClassEx/res/home_small_clean_up.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/home_small_clean_up.bmp -------------------------------------------------------------------------------- /KReClassEx/res/home_small_code.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/home_small_code.bmp -------------------------------------------------------------------------------- /KReClassEx/res/home_small_delete.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/home_small_delete.bmp -------------------------------------------------------------------------------- /KReClassEx/res/home_small_footer.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/home_small_footer.bmp -------------------------------------------------------------------------------- /KReClassEx/res/home_small_header.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/home_small_header.bmp -------------------------------------------------------------------------------- /KReClassEx/res/home_small_typedef.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/home_small_typedef.bmp -------------------------------------------------------------------------------- /KReClassEx/res/icons/add.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/icons/add.ico -------------------------------------------------------------------------------- /KReClassEx/res/icons/array.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/icons/array.ico -------------------------------------------------------------------------------- /KReClassEx/res/icons/arrow_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/icons/arrow_icon.ico -------------------------------------------------------------------------------- /KReClassEx/res/icons/camera.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/icons/camera.ico -------------------------------------------------------------------------------- /KReClassEx/res/icons/close.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/icons/close.ico -------------------------------------------------------------------------------- /KReClassEx/res/icons/closed.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/icons/closed.ico -------------------------------------------------------------------------------- /KReClassEx/res/icons/custom.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/icons/custom.ico -------------------------------------------------------------------------------- /KReClassEx/res/icons/enum.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/icons/enum.ico -------------------------------------------------------------------------------- /KReClassEx/res/icons/exchange.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/icons/exchange.ico -------------------------------------------------------------------------------- /KReClassEx/res/icons/float.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/icons/float.ico -------------------------------------------------------------------------------- /KReClassEx/res/icons/general_class_VS.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/icons/general_class_VS.ico -------------------------------------------------------------------------------- /KReClassEx/res/icons/general_interface_VS.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/icons/general_interface_VS.ico -------------------------------------------------------------------------------- /KReClassEx/res/icons/general_method_VS.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/icons/general_method_VS.ico -------------------------------------------------------------------------------- /KReClassEx/res/icons/left.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/icons/left.ico -------------------------------------------------------------------------------- /KReClassEx/res/icons/list_entry.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/icons/list_entry.ico -------------------------------------------------------------------------------- /KReClassEx/res/icons/matrix.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/icons/matrix.ico -------------------------------------------------------------------------------- /KReClassEx/res/icons/open.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/icons/open.ico -------------------------------------------------------------------------------- /KReClassEx/res/icons/pointer.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/icons/pointer.ico -------------------------------------------------------------------------------- /KReClassEx/res/icons/right.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/icons/right.ico -------------------------------------------------------------------------------- /KReClassEx/res/icons/signed.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/icons/signed.ico -------------------------------------------------------------------------------- /KReClassEx/res/icons/speles_random_ico.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/icons/speles_random_ico.ico -------------------------------------------------------------------------------- /KReClassEx/res/icons/text.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/icons/text.ico -------------------------------------------------------------------------------- /KReClassEx/res/icons/unsigned.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/icons/unsigned.ico -------------------------------------------------------------------------------- /KReClassEx/res/icons/vector.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/icons/vector.ico -------------------------------------------------------------------------------- /KReClassEx/res/toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/toolbar.bmp -------------------------------------------------------------------------------- /KReClassEx/res/toolbar_add.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/toolbar_add.bmp -------------------------------------------------------------------------------- /KReClassEx/res/toolbar_add1024.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/toolbar_add1024.bmp -------------------------------------------------------------------------------- /KReClassEx/res/toolbar_add2048.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/toolbar_add2048.bmp -------------------------------------------------------------------------------- /KReClassEx/res/toolbar_add64.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/toolbar_add64.bmp -------------------------------------------------------------------------------- /KReClassEx/res/toolbar_add8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/toolbar_add8.bmp -------------------------------------------------------------------------------- /KReClassEx/res/toolbar_array.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/toolbar_array.bmp -------------------------------------------------------------------------------- /KReClassEx/res/toolbar_ascii.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/toolbar_ascii.bmp -------------------------------------------------------------------------------- /KReClassEx/res/toolbar_bits.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/toolbar_bits.bmp -------------------------------------------------------------------------------- /KReClassEx/res/toolbar_byte.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/toolbar_byte.bmp -------------------------------------------------------------------------------- /KReClassEx/res/toolbar_class.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/toolbar_class.bmp -------------------------------------------------------------------------------- /KReClassEx/res/toolbar_custom.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/toolbar_custom.bmp -------------------------------------------------------------------------------- /KReClassEx/res/toolbar_delete.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/toolbar_delete.bmp -------------------------------------------------------------------------------- /KReClassEx/res/toolbar_double.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/toolbar_double.bmp -------------------------------------------------------------------------------- /KReClassEx/res/toolbar_dword.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/toolbar_dword.bmp -------------------------------------------------------------------------------- /KReClassEx/res/toolbar_float.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/toolbar_float.bmp -------------------------------------------------------------------------------- /KReClassEx/res/toolbar_function.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/toolbar_function.bmp -------------------------------------------------------------------------------- /KReClassEx/res/toolbar_function_ptr.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/toolbar_function_ptr.bmp -------------------------------------------------------------------------------- /KReClassEx/res/toolbar_hex16.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/toolbar_hex16.bmp -------------------------------------------------------------------------------- /KReClassEx/res/toolbar_hex32.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/toolbar_hex32.bmp -------------------------------------------------------------------------------- /KReClassEx/res/toolbar_hex64.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/toolbar_hex64.bmp -------------------------------------------------------------------------------- /KReClassEx/res/toolbar_hex8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/toolbar_hex8.bmp -------------------------------------------------------------------------------- /KReClassEx/res/toolbar_hide.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/toolbar_hide.bmp -------------------------------------------------------------------------------- /KReClassEx/res/toolbar_insert.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/toolbar_insert.bmp -------------------------------------------------------------------------------- /KReClassEx/res/toolbar_insert1024.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/toolbar_insert1024.bmp -------------------------------------------------------------------------------- /KReClassEx/res/toolbar_insert2048.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/toolbar_insert2048.bmp -------------------------------------------------------------------------------- /KReClassEx/res/toolbar_insert64.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/toolbar_insert64.bmp -------------------------------------------------------------------------------- /KReClassEx/res/toolbar_insert8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/toolbar_insert8.bmp -------------------------------------------------------------------------------- /KReClassEx/res/toolbar_int16.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/toolbar_int16.bmp -------------------------------------------------------------------------------- /KReClassEx/res/toolbar_int32.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/toolbar_int32.bmp -------------------------------------------------------------------------------- /KReClassEx/res/toolbar_int64.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/toolbar_int64.bmp -------------------------------------------------------------------------------- /KReClassEx/res/toolbar_int8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/toolbar_int8.bmp -------------------------------------------------------------------------------- /KReClassEx/res/toolbar_list_entry.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/toolbar_list_entry.bmp -------------------------------------------------------------------------------- /KReClassEx/res/toolbar_matrix.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/toolbar_matrix.bmp -------------------------------------------------------------------------------- /KReClassEx/res/toolbar_parray.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/toolbar_parray.bmp -------------------------------------------------------------------------------- /KReClassEx/res/toolbar_pchar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/toolbar_pchar.bmp -------------------------------------------------------------------------------- /KReClassEx/res/toolbar_pointer.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/toolbar_pointer.bmp -------------------------------------------------------------------------------- /KReClassEx/res/toolbar_pwchar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/toolbar_pwchar.bmp -------------------------------------------------------------------------------- /KReClassEx/res/toolbar_qword.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/toolbar_qword.bmp -------------------------------------------------------------------------------- /KReClassEx/res/toolbar_show.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/toolbar_show.bmp -------------------------------------------------------------------------------- /KReClassEx/res/toolbar_unicode.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/toolbar_unicode.bmp -------------------------------------------------------------------------------- /KReClassEx/res/toolbar_vec2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/toolbar_vec2.bmp -------------------------------------------------------------------------------- /KReClassEx/res/toolbar_vec3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/toolbar_vec3.bmp -------------------------------------------------------------------------------- /KReClassEx/res/toolbar_vec4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/toolbar_vec4.bmp -------------------------------------------------------------------------------- /KReClassEx/res/toolbar_vtable.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/toolbar_vtable.bmp -------------------------------------------------------------------------------- /KReClassEx/res/toolbar_word.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/res/toolbar_word.bmp -------------------------------------------------------------------------------- /KReClassEx/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/resource.h -------------------------------------------------------------------------------- /KReClassEx/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/stdafx.cpp -------------------------------------------------------------------------------- /KReClassEx/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/stdafx.h -------------------------------------------------------------------------------- /KReClassEx/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/utils.cpp -------------------------------------------------------------------------------- /KReClassEx/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/utils.h -------------------------------------------------------------------------------- /KReClassEx/winsock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/winsock.cpp -------------------------------------------------------------------------------- /KReClassEx/winsock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/KReClassEx/winsock.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/LICENSE -------------------------------------------------------------------------------- /Main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/Main.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/README.md -------------------------------------------------------------------------------- /ida.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/ida.png -------------------------------------------------------------------------------- /lexilla/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/.gitattributes -------------------------------------------------------------------------------- /lexilla/.github/workflows/build-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/.github/workflows/build-check.yml -------------------------------------------------------------------------------- /lexilla/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/.gitignore -------------------------------------------------------------------------------- /lexilla/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/.travis.yml -------------------------------------------------------------------------------- /lexilla/CONTRIBUTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/CONTRIBUTING -------------------------------------------------------------------------------- /lexilla/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/License.txt -------------------------------------------------------------------------------- /lexilla/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/README -------------------------------------------------------------------------------- /lexilla/access/LexillaAccess.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/access/LexillaAccess.cxx -------------------------------------------------------------------------------- /lexilla/access/LexillaAccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/access/LexillaAccess.h -------------------------------------------------------------------------------- /lexilla/access/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/access/README -------------------------------------------------------------------------------- /lexilla/cppcheck.suppress: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/cppcheck.suppress -------------------------------------------------------------------------------- /lexilla/delbin.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/delbin.bat -------------------------------------------------------------------------------- /lexilla/doc/Lexilla.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/doc/Lexilla.html -------------------------------------------------------------------------------- /lexilla/doc/LexillaDoc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/doc/LexillaDoc.html -------------------------------------------------------------------------------- /lexilla/doc/LexillaDownload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/doc/LexillaDownload.html -------------------------------------------------------------------------------- /lexilla/doc/LexillaHistory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/doc/LexillaHistory.html -------------------------------------------------------------------------------- /lexilla/doc/LexillaLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/doc/LexillaLogo.png -------------------------------------------------------------------------------- /lexilla/doc/LexillaLogo2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/doc/LexillaLogo2x.png -------------------------------------------------------------------------------- /lexilla/examples/CheckLexilla/CheckLexilla.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/examples/CheckLexilla/CheckLexilla.c -------------------------------------------------------------------------------- /lexilla/examples/CheckLexilla/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/examples/CheckLexilla/makefile -------------------------------------------------------------------------------- /lexilla/examples/SimpleLexer/SimpleLexer.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/examples/SimpleLexer/SimpleLexer.cxx -------------------------------------------------------------------------------- /lexilla/examples/SimpleLexer/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/examples/SimpleLexer/makefile -------------------------------------------------------------------------------- /lexilla/include/LexicalStyles.iface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/include/LexicalStyles.iface -------------------------------------------------------------------------------- /lexilla/include/Lexilla.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/include/Lexilla.h -------------------------------------------------------------------------------- /lexilla/include/SciLexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/include/SciLexer.h -------------------------------------------------------------------------------- /lexilla/lexers/LexA68k.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexA68k.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexAPDL.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexAPDL.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexASY.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexASY.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexAU3.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexAU3.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexAVE.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexAVE.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexAVS.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexAVS.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexAbaqus.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexAbaqus.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexAda.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexAda.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexAsciidoc.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexAsciidoc.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexAsm.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexAsm.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexAsn1.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexAsn1.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexBaan.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexBaan.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexBash.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexBash.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexBasic.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexBasic.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexBatch.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexBatch.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexBibTeX.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexBibTeX.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexBullant.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexBullant.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexCIL.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexCIL.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexCLW.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexCLW.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexCOBOL.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexCOBOL.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexCPP.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexCPP.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexCSS.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexCSS.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexCaml.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexCaml.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexCmake.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexCmake.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexCoffeeScript.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexCoffeeScript.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexConf.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexConf.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexCrontab.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexCrontab.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexCsound.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexCsound.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexD.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexD.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexDMAP.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexDMAP.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexDMIS.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexDMIS.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexDataflex.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexDataflex.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexDiff.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexDiff.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexECL.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexECL.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexEDIFACT.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexEDIFACT.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexEScript.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexEScript.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexEiffel.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexEiffel.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexErlang.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexErlang.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexErrorList.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexErrorList.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexFSharp.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexFSharp.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexFlagship.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexFlagship.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexForth.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexForth.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexFortran.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexFortran.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexGAP.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexGAP.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexGDScript.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexGDScript.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexGui4Cli.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexGui4Cli.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexHTML.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexHTML.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexHaskell.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexHaskell.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexHex.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexHex.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexHollywood.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexHollywood.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexIndent.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexIndent.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexInno.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexInno.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexJSON.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexJSON.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexJulia.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexJulia.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexKVIrc.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexKVIrc.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexKix.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexKix.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexLaTeX.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexLaTeX.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexLisp.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexLisp.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexLout.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexLout.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexLua.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexLua.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexMMIXAL.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexMMIXAL.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexMPT.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexMPT.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexMSSQL.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexMSSQL.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexMagik.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexMagik.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexMake.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexMake.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexMarkdown.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexMarkdown.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexMatlab.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexMatlab.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexMaxima.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexMaxima.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexMetapost.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexMetapost.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexModula.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexModula.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexMySQL.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexMySQL.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexNim.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexNim.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexNimrod.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexNimrod.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexNsis.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexNsis.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexNull.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexNull.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexOScript.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexOScript.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexOpal.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexOpal.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexPB.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexPB.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexPLM.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexPLM.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexPO.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexPO.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexPOV.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexPOV.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexPS.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexPS.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexPascal.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexPascal.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexPerl.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexPerl.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexPowerPro.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexPowerPro.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexPowerShell.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexPowerShell.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexProgress.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexProgress.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexProps.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexProps.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexPython.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexPython.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexR.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexR.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexRaku.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexRaku.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexRebol.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexRebol.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexRegistry.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexRegistry.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexRuby.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexRuby.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexRust.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexRust.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexSAS.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexSAS.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexSML.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexSML.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexSQL.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexSQL.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexSTTXT.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexSTTXT.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexScriptol.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexScriptol.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexSmalltalk.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexSmalltalk.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexSorcus.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexSorcus.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexSpecman.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexSpecman.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexSpice.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexSpice.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexStata.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexStata.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexTACL.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexTACL.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexTADS3.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexTADS3.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexTAL.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexTAL.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexTCL.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexTCL.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexTCMD.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexTCMD.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexTeX.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexTeX.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexTxt2tags.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexTxt2tags.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexVB.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexVB.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexVHDL.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexVHDL.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexVerilog.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexVerilog.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexVisualProlog.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexVisualProlog.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexX12.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexX12.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexYAML.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexers/LexYAML.cxx -------------------------------------------------------------------------------- /lexilla/lexlib/Accessor.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexlib/Accessor.cxx -------------------------------------------------------------------------------- /lexilla/lexlib/Accessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexlib/Accessor.h -------------------------------------------------------------------------------- /lexilla/lexlib/CatalogueModules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexlib/CatalogueModules.h -------------------------------------------------------------------------------- /lexilla/lexlib/CharacterCategory.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexlib/CharacterCategory.cxx -------------------------------------------------------------------------------- /lexilla/lexlib/CharacterCategory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexlib/CharacterCategory.h -------------------------------------------------------------------------------- /lexilla/lexlib/CharacterSet.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexlib/CharacterSet.cxx -------------------------------------------------------------------------------- /lexilla/lexlib/CharacterSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexlib/CharacterSet.h -------------------------------------------------------------------------------- /lexilla/lexlib/DefaultLexer.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexlib/DefaultLexer.cxx -------------------------------------------------------------------------------- /lexilla/lexlib/DefaultLexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexlib/DefaultLexer.h -------------------------------------------------------------------------------- /lexilla/lexlib/LexAccessor.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexlib/LexAccessor.cxx -------------------------------------------------------------------------------- /lexilla/lexlib/LexAccessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexlib/LexAccessor.h -------------------------------------------------------------------------------- /lexilla/lexlib/LexerBase.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexlib/LexerBase.cxx -------------------------------------------------------------------------------- /lexilla/lexlib/LexerBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexlib/LexerBase.h -------------------------------------------------------------------------------- /lexilla/lexlib/LexerModule.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexlib/LexerModule.cxx -------------------------------------------------------------------------------- /lexilla/lexlib/LexerModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexlib/LexerModule.h -------------------------------------------------------------------------------- /lexilla/lexlib/LexerNoExceptions.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexlib/LexerNoExceptions.cxx -------------------------------------------------------------------------------- /lexilla/lexlib/LexerNoExceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexlib/LexerNoExceptions.h -------------------------------------------------------------------------------- /lexilla/lexlib/LexerSimple.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexlib/LexerSimple.cxx -------------------------------------------------------------------------------- /lexilla/lexlib/LexerSimple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexlib/LexerSimple.h -------------------------------------------------------------------------------- /lexilla/lexlib/OptionSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexlib/OptionSet.h -------------------------------------------------------------------------------- /lexilla/lexlib/PropSetSimple.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexlib/PropSetSimple.cxx -------------------------------------------------------------------------------- /lexilla/lexlib/PropSetSimple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexlib/PropSetSimple.h -------------------------------------------------------------------------------- /lexilla/lexlib/SparseState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexlib/SparseState.h -------------------------------------------------------------------------------- /lexilla/lexlib/StringCopy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexlib/StringCopy.h -------------------------------------------------------------------------------- /lexilla/lexlib/StyleContext.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexlib/StyleContext.cxx -------------------------------------------------------------------------------- /lexilla/lexlib/StyleContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexlib/StyleContext.h -------------------------------------------------------------------------------- /lexilla/lexlib/SubStyles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexlib/SubStyles.h -------------------------------------------------------------------------------- /lexilla/lexlib/WordList.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexlib/WordList.cxx -------------------------------------------------------------------------------- /lexilla/lexlib/WordList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/lexlib/WordList.h -------------------------------------------------------------------------------- /lexilla/scripts/HeaderOrder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/scripts/HeaderOrder.txt -------------------------------------------------------------------------------- /lexilla/scripts/LexFacer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/scripts/LexFacer.py -------------------------------------------------------------------------------- /lexilla/scripts/LexillaData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/scripts/LexillaData.py -------------------------------------------------------------------------------- /lexilla/scripts/LexillaGen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/scripts/LexillaGen.py -------------------------------------------------------------------------------- /lexilla/scripts/LexillaLogo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/scripts/LexillaLogo.py -------------------------------------------------------------------------------- /lexilla/scripts/PromoteNew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/scripts/PromoteNew.bat -------------------------------------------------------------------------------- /lexilla/scripts/RunTest.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/scripts/RunTest.bat -------------------------------------------------------------------------------- /lexilla/scripts/RunTest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/scripts/RunTest.sh -------------------------------------------------------------------------------- /lexilla/src/DepGen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/src/DepGen.py -------------------------------------------------------------------------------- /lexilla/src/Lexilla.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/src/Lexilla.cxx -------------------------------------------------------------------------------- /lexilla/src/Lexilla.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/src/Lexilla.def -------------------------------------------------------------------------------- /lexilla/src/Lexilla.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/src/Lexilla.pro -------------------------------------------------------------------------------- /lexilla/src/Lexilla.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/src/Lexilla.vcxproj -------------------------------------------------------------------------------- /lexilla/src/Lexilla/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/src/Lexilla/Info.plist -------------------------------------------------------------------------------- /lexilla/src/LexillaVersion.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/src/LexillaVersion.rc -------------------------------------------------------------------------------- /lexilla/src/deps.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/src/deps.mak -------------------------------------------------------------------------------- /lexilla/src/lexilla.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/src/lexilla.mak -------------------------------------------------------------------------------- /lexilla/src/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/src/makefile -------------------------------------------------------------------------------- /lexilla/src/nmdeps.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/src/nmdeps.mak -------------------------------------------------------------------------------- /lexilla/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/README -------------------------------------------------------------------------------- /lexilla/test/TestDocument.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/TestDocument.cxx -------------------------------------------------------------------------------- /lexilla/test/TestDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/TestDocument.h -------------------------------------------------------------------------------- /lexilla/test/TestLexers.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/TestLexers.cxx -------------------------------------------------------------------------------- /lexilla/test/TestLexers.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/TestLexers.vcxproj -------------------------------------------------------------------------------- /lexilla/test/examples/asciidoc/AllStyles.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/asciidoc/AllStyles.adoc -------------------------------------------------------------------------------- /lexilla/test/examples/asciidoc/SciTE.properties: -------------------------------------------------------------------------------- 1 | code.page=65001 2 | lexer.*.adoc=asciidoc 3 | fold=1 4 | -------------------------------------------------------------------------------- /lexilla/test/examples/bash/AllStyles.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/bash/AllStyles.bsh -------------------------------------------------------------------------------- /lexilla/test/examples/bash/Issue180.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/bash/Issue180.bsh -------------------------------------------------------------------------------- /lexilla/test/examples/bash/Issue180.bsh.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/bash/Issue180.bsh.folded -------------------------------------------------------------------------------- /lexilla/test/examples/bash/Issue180.bsh.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/bash/Issue180.bsh.styled -------------------------------------------------------------------------------- /lexilla/test/examples/bash/Issue182.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/bash/Issue182.bsh -------------------------------------------------------------------------------- /lexilla/test/examples/bash/Issue182.bsh.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/bash/Issue182.bsh.folded -------------------------------------------------------------------------------- /lexilla/test/examples/bash/Issue182.bsh.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/bash/Issue182.bsh.styled -------------------------------------------------------------------------------- /lexilla/test/examples/bash/Issue184.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/bash/Issue184.bsh -------------------------------------------------------------------------------- /lexilla/test/examples/bash/Issue184.bsh.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/bash/Issue184.bsh.folded -------------------------------------------------------------------------------- /lexilla/test/examples/bash/Issue184.bsh.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/bash/Issue184.bsh.styled -------------------------------------------------------------------------------- /lexilla/test/examples/bash/Issue184Copy.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/bash/Issue184Copy.bsh -------------------------------------------------------------------------------- /lexilla/test/examples/bash/Nested.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/bash/Nested.bsh -------------------------------------------------------------------------------- /lexilla/test/examples/bash/NestedRich.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/bash/NestedRich.bsh -------------------------------------------------------------------------------- /lexilla/test/examples/bash/SciTE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/bash/SciTE.properties -------------------------------------------------------------------------------- /lexilla/test/examples/bash/x.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/bash/x.bsh -------------------------------------------------------------------------------- /lexilla/test/examples/bash/x.bsh.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/bash/x.bsh.folded -------------------------------------------------------------------------------- /lexilla/test/examples/bash/x.bsh.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/bash/x.bsh.styled -------------------------------------------------------------------------------- /lexilla/test/examples/batch/Issue115.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/batch/Issue115.bat -------------------------------------------------------------------------------- /lexilla/test/examples/batch/x.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/batch/x.bat -------------------------------------------------------------------------------- /lexilla/test/examples/batch/x.bat.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/batch/x.bat.folded -------------------------------------------------------------------------------- /lexilla/test/examples/batch/x.bat.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/batch/x.bat.styled -------------------------------------------------------------------------------- /lexilla/test/examples/caml/AllStyles.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/caml/AllStyles.ml -------------------------------------------------------------------------------- /lexilla/test/examples/caml/SciTE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/caml/SciTE.properties -------------------------------------------------------------------------------- /lexilla/test/examples/cmake/Bug77_0.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/cmake/Bug77_0.cmake -------------------------------------------------------------------------------- /lexilla/test/examples/cmake/Bug77_1.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/cmake/Bug77_1.cmake -------------------------------------------------------------------------------- /lexilla/test/examples/cpp/AllStyles.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/cpp/AllStyles.cxx -------------------------------------------------------------------------------- /lexilla/test/examples/cpp/Bug2245.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/cpp/Bug2245.cxx -------------------------------------------------------------------------------- /lexilla/test/examples/cpp/SciTE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/cpp/SciTE.properties -------------------------------------------------------------------------------- /lexilla/test/examples/cpp/x.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/cpp/x.cxx -------------------------------------------------------------------------------- /lexilla/test/examples/cpp/x.cxx.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/cpp/x.cxx.folded -------------------------------------------------------------------------------- /lexilla/test/examples/cpp/x.cxx.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/cpp/x.cxx.styled -------------------------------------------------------------------------------- /lexilla/test/examples/css/AllStyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/css/AllStyles.css -------------------------------------------------------------------------------- /lexilla/test/examples/css/SciTE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/css/SciTE.properties -------------------------------------------------------------------------------- /lexilla/test/examples/d/SciTE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/d/SciTE.properties -------------------------------------------------------------------------------- /lexilla/test/examples/d/x.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/d/x.d -------------------------------------------------------------------------------- /lexilla/test/examples/d/x.d.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/d/x.d.folded -------------------------------------------------------------------------------- /lexilla/test/examples/d/x.d.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/d/x.d.styled -------------------------------------------------------------------------------- /lexilla/test/examples/diff/AllStyles.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/diff/AllStyles.diff -------------------------------------------------------------------------------- /lexilla/test/examples/diff/LongLine.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/diff/LongLine.diff -------------------------------------------------------------------------------- /lexilla/test/examples/diff/SciTE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/diff/SciTE.properties -------------------------------------------------------------------------------- /lexilla/test/examples/erlang/AllStyles.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/erlang/AllStyles.erl -------------------------------------------------------------------------------- /lexilla/test/examples/fsharp/FmtSpecs.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/fsharp/FmtSpecs.fs -------------------------------------------------------------------------------- /lexilla/test/examples/fsharp/Issue56.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/fsharp/Issue56.fs -------------------------------------------------------------------------------- /lexilla/test/examples/fsharp/Issue93.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/fsharp/Issue93.fs -------------------------------------------------------------------------------- /lexilla/test/examples/fsharp/Literals.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/fsharp/Literals.fs -------------------------------------------------------------------------------- /lexilla/test/examples/fsharp/x.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/fsharp/x.fs -------------------------------------------------------------------------------- /lexilla/test/examples/fsharp/x.fs.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/fsharp/x.fs.folded -------------------------------------------------------------------------------- /lexilla/test/examples/fsharp/x.fs.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/fsharp/x.fs.styled -------------------------------------------------------------------------------- /lexilla/test/examples/gdscript/AllStyles.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/gdscript/AllStyles.gd -------------------------------------------------------------------------------- /lexilla/test/examples/gdscript/NodePath.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/gdscript/NodePath.gd -------------------------------------------------------------------------------- /lexilla/test/examples/gui4cli/AllStyles.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/gui4cli/AllStyles.gui -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/Issue19.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/hypertext/Issue19.php -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/x.asp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/hypertext/x.asp -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/x.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/hypertext/x.html -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/x.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/hypertext/x.php -------------------------------------------------------------------------------- /lexilla/test/examples/inno/SciTE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/inno/SciTE.properties -------------------------------------------------------------------------------- /lexilla/test/examples/inno/x.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/inno/x.iss -------------------------------------------------------------------------------- /lexilla/test/examples/inno/x.iss.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/inno/x.iss.folded -------------------------------------------------------------------------------- /lexilla/test/examples/inno/x.iss.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/inno/x.iss.styled -------------------------------------------------------------------------------- /lexilla/test/examples/json/AllStyles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/json/AllStyles.json -------------------------------------------------------------------------------- /lexilla/test/examples/json/SciTE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/json/SciTE.properties -------------------------------------------------------------------------------- /lexilla/test/examples/julia/x.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/julia/x.jl -------------------------------------------------------------------------------- /lexilla/test/examples/julia/x.jl.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/julia/x.jl.folded -------------------------------------------------------------------------------- /lexilla/test/examples/julia/x.jl.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/julia/x.jl.styled -------------------------------------------------------------------------------- /lexilla/test/examples/latex/AllStyles.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/latex/AllStyles.tex -------------------------------------------------------------------------------- /lexilla/test/examples/latex/Feature1358.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/latex/Feature1358.tex -------------------------------------------------------------------------------- /lexilla/test/examples/latex/SciTE.properties: -------------------------------------------------------------------------------- 1 | lexer.*.tex=latex 2 | -------------------------------------------------------------------------------- /lexilla/test/examples/lua/Bug2205.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/lua/Bug2205.lua -------------------------------------------------------------------------------- /lexilla/test/examples/lua/SciTE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/lua/SciTE.properties -------------------------------------------------------------------------------- /lexilla/test/examples/lua/x.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/lua/x.lua -------------------------------------------------------------------------------- /lexilla/test/examples/lua/x.lua.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/lua/x.lua.folded -------------------------------------------------------------------------------- /lexilla/test/examples/lua/x.lua.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/lua/x.lua.styled -------------------------------------------------------------------------------- /lexilla/test/examples/makefile/SciTE.properties: -------------------------------------------------------------------------------- 1 | lexer.*.mak=makefile 2 | -------------------------------------------------------------------------------- /lexilla/test/examples/makefile/longline.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/makefile/longline.mak -------------------------------------------------------------------------------- /lexilla/test/examples/makefile/x.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/makefile/x.mak -------------------------------------------------------------------------------- /lexilla/test/examples/makefile/x.mak.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/makefile/x.mak.folded -------------------------------------------------------------------------------- /lexilla/test/examples/makefile/x.mak.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/makefile/x.mak.styled -------------------------------------------------------------------------------- /lexilla/test/examples/markdown/AllStyles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/markdown/AllStyles.md -------------------------------------------------------------------------------- /lexilla/test/examples/markdown/Bug1216.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/markdown/Bug1216.md -------------------------------------------------------------------------------- /lexilla/test/examples/markdown/Bug2235.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/markdown/Bug2235.md -------------------------------------------------------------------------------- /lexilla/test/examples/markdown/Bug2247.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/markdown/Bug2247.md -------------------------------------------------------------------------------- /lexilla/test/examples/markdown/Issue117.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/markdown/Issue117.md -------------------------------------------------------------------------------- /lexilla/test/examples/mmixal/AllStyles.mms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/mmixal/AllStyles.mms -------------------------------------------------------------------------------- /lexilla/test/examples/mmixal/references.mms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/mmixal/references.mms -------------------------------------------------------------------------------- /lexilla/test/examples/mmixal/x.mms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/mmixal/x.mms -------------------------------------------------------------------------------- /lexilla/test/examples/mmixal/x.mms.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/mmixal/x.mms.folded -------------------------------------------------------------------------------- /lexilla/test/examples/mmixal/x.mms.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/mmixal/x.mms.styled -------------------------------------------------------------------------------- /lexilla/test/examples/modula/128Endless.m3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/modula/128Endless.m3 -------------------------------------------------------------------------------- /lexilla/test/examples/modula/Issue129.m3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/modula/Issue129.m3 -------------------------------------------------------------------------------- /lexilla/test/examples/mssql/AllStyles.tsql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/mssql/AllStyles.tsql -------------------------------------------------------------------------------- /lexilla/test/examples/mssql/Issue87.tsql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/mssql/Issue87.tsql -------------------------------------------------------------------------------- /lexilla/test/examples/mssql/Issue90.tsql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/mssql/Issue90.tsql -------------------------------------------------------------------------------- /lexilla/test/examples/mssql/Various.tsql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/mssql/Various.tsql -------------------------------------------------------------------------------- /lexilla/test/examples/nim/SciTE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/nim/SciTE.properties -------------------------------------------------------------------------------- /lexilla/test/examples/nim/x.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/nim/x.nim -------------------------------------------------------------------------------- /lexilla/test/examples/nim/x.nim.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/nim/x.nim.folded -------------------------------------------------------------------------------- /lexilla/test/examples/nim/x.nim.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/nim/x.nim.styled -------------------------------------------------------------------------------- /lexilla/test/examples/perl/SciTE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/perl/SciTE.properties -------------------------------------------------------------------------------- /lexilla/test/examples/perl/x.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/perl/x.pl -------------------------------------------------------------------------------- /lexilla/test/examples/perl/x.pl.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/perl/x.pl.folded -------------------------------------------------------------------------------- /lexilla/test/examples/perl/x.pl.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/perl/x.pl.styled -------------------------------------------------------------------------------- /lexilla/test/examples/powershell/Pull92.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/powershell/Pull92.ps1 -------------------------------------------------------------------------------- /lexilla/test/examples/powershell/Pull99Comment.ps1: -------------------------------------------------------------------------------- 1 | # End comment before \r carriage return. 2 | -------------------------------------------------------------------------------- /lexilla/test/examples/powershell/Pull99Comment.ps1.styled: -------------------------------------------------------------------------------- 1 | {1}# End comment before \r carriage return.{0} 2 | -------------------------------------------------------------------------------- /lexilla/test/examples/props/example.session: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/props/example.session -------------------------------------------------------------------------------- /lexilla/test/examples/python/AllStyles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/python/AllStyles.py -------------------------------------------------------------------------------- /lexilla/test/examples/python/matchcase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/python/matchcase.py -------------------------------------------------------------------------------- /lexilla/test/examples/python/x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/python/x.py -------------------------------------------------------------------------------- /lexilla/test/examples/python/x.py.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/python/x.py.folded -------------------------------------------------------------------------------- /lexilla/test/examples/python/x.py.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/python/x.py.styled -------------------------------------------------------------------------------- /lexilla/test/examples/r/102Backticks.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/r/102Backticks.r -------------------------------------------------------------------------------- /lexilla/test/examples/r/AllStyles.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/r/AllStyles.r -------------------------------------------------------------------------------- /lexilla/test/examples/r/AllStyles.r.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/r/AllStyles.r.folded -------------------------------------------------------------------------------- /lexilla/test/examples/r/AllStyles.r.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/r/AllStyles.r.styled -------------------------------------------------------------------------------- /lexilla/test/examples/r/SciTE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/r/SciTE.properties -------------------------------------------------------------------------------- /lexilla/test/examples/raku/SciTE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/raku/SciTE.properties -------------------------------------------------------------------------------- /lexilla/test/examples/raku/x.p6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/raku/x.p6 -------------------------------------------------------------------------------- /lexilla/test/examples/raku/x.p6.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/raku/x.p6.folded -------------------------------------------------------------------------------- /lexilla/test/examples/raku/x.p6.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/raku/x.p6.styled -------------------------------------------------------------------------------- /lexilla/test/examples/ruby/AllStyles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/ruby/AllStyles.rb -------------------------------------------------------------------------------- /lexilla/test/examples/ruby/Issue132.rb: -------------------------------------------------------------------------------- 1 | # Bad folding when single character ')' in SCE_RB_STRING_QW #132 2 | %W(#{1 + 1}) 3 | 4 | -------------------------------------------------------------------------------- /lexilla/test/examples/ruby/Issue135.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/ruby/Issue135.rb -------------------------------------------------------------------------------- /lexilla/test/examples/ruby/Issue136.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/ruby/Issue136.rb -------------------------------------------------------------------------------- /lexilla/test/examples/ruby/Issue140.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/ruby/Issue140.rb -------------------------------------------------------------------------------- /lexilla/test/examples/ruby/Issue65.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/ruby/Issue65.rb -------------------------------------------------------------------------------- /lexilla/test/examples/ruby/Issue66.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/ruby/Issue66.rb -------------------------------------------------------------------------------- /lexilla/test/examples/ruby/Issue67.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/ruby/Issue67.rb -------------------------------------------------------------------------------- /lexilla/test/examples/ruby/Issue69.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/ruby/Issue69.rb -------------------------------------------------------------------------------- /lexilla/test/examples/ruby/SciTE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/ruby/SciTE.properties -------------------------------------------------------------------------------- /lexilla/test/examples/ruby/x.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/ruby/x.rb -------------------------------------------------------------------------------- /lexilla/test/examples/ruby/x.rb.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/ruby/x.rb.folded -------------------------------------------------------------------------------- /lexilla/test/examples/ruby/x.rb.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/ruby/x.rb.styled -------------------------------------------------------------------------------- /lexilla/test/examples/rust/Issue33.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/rust/Issue33.rs -------------------------------------------------------------------------------- /lexilla/test/examples/rust/Issue34.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/rust/Issue34.rs -------------------------------------------------------------------------------- /lexilla/test/examples/rust/Issue35.rs: -------------------------------------------------------------------------------- 1 | /// GitHub Issue #35 2 | fn main() {} 3 | /* -------------------------------------------------------------------------------- /lexilla/test/examples/rust/SciTE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/rust/SciTE.properties -------------------------------------------------------------------------------- /lexilla/test/examples/tcl/SciTE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/tcl/SciTE.properties -------------------------------------------------------------------------------- /lexilla/test/examples/tcl/x.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/tcl/x.tcl -------------------------------------------------------------------------------- /lexilla/test/examples/tcl/x.tcl.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/tcl/x.tcl.folded -------------------------------------------------------------------------------- /lexilla/test/examples/tcl/x.tcl.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/tcl/x.tcl.styled -------------------------------------------------------------------------------- /lexilla/test/examples/vb/SciTE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/vb/SciTE.properties -------------------------------------------------------------------------------- /lexilla/test/examples/vb/x.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/vb/x.vb -------------------------------------------------------------------------------- /lexilla/test/examples/vb/x.vb.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/vb/x.vb.folded -------------------------------------------------------------------------------- /lexilla/test/examples/vb/x.vb.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/vb/x.vb.styled -------------------------------------------------------------------------------- /lexilla/test/examples/vhdl/SciTE.properties: -------------------------------------------------------------------------------- 1 | lexer.*.vhd=vhdl 2 | fold=1 3 | 4 | -------------------------------------------------------------------------------- /lexilla/test/examples/vhdl/x.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/vhdl/x.vhd -------------------------------------------------------------------------------- /lexilla/test/examples/vhdl/x.vhd.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/vhdl/x.vhd.folded -------------------------------------------------------------------------------- /lexilla/test/examples/vhdl/x.vhd.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/vhdl/x.vhd.styled -------------------------------------------------------------------------------- /lexilla/test/examples/x12/SciTE.properties: -------------------------------------------------------------------------------- 1 | lexer.*.x12=x12 2 | fold=1 3 | 4 | -------------------------------------------------------------------------------- /lexilla/test/examples/x12/empty.x12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/x12/empty.x12 -------------------------------------------------------------------------------- /lexilla/test/examples/x12/empty.x12.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/x12/empty.x12.folded -------------------------------------------------------------------------------- /lexilla/test/examples/x12/empty.x12.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/x12/empty.x12.styled -------------------------------------------------------------------------------- /lexilla/test/examples/x12/x.x12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/x12/x.x12 -------------------------------------------------------------------------------- /lexilla/test/examples/x12/x.x12.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/x12/x.x12.folded -------------------------------------------------------------------------------- /lexilla/test/examples/x12/x.x12.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/x12/x.x12.styled -------------------------------------------------------------------------------- /lexilla/test/examples/yaml/SciTE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/yaml/SciTE.properties -------------------------------------------------------------------------------- /lexilla/test/examples/yaml/longline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/yaml/longline.yaml -------------------------------------------------------------------------------- /lexilla/test/examples/yaml/x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/yaml/x.yaml -------------------------------------------------------------------------------- /lexilla/test/examples/yaml/x.yaml.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/yaml/x.yaml.folded -------------------------------------------------------------------------------- /lexilla/test/examples/yaml/x.yaml.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/examples/yaml/x.yaml.styled -------------------------------------------------------------------------------- /lexilla/test/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/makefile -------------------------------------------------------------------------------- /lexilla/test/testlexers.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/testlexers.mak -------------------------------------------------------------------------------- /lexilla/test/unit/LICENSE_1_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/unit/LICENSE_1_0.txt -------------------------------------------------------------------------------- /lexilla/test/unit/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/unit/README -------------------------------------------------------------------------------- /lexilla/test/unit/Sci.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/unit/Sci.natvis -------------------------------------------------------------------------------- /lexilla/test/unit/SciTE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/unit/SciTE.properties -------------------------------------------------------------------------------- /lexilla/test/unit/UnitTester.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/unit/UnitTester.cxx -------------------------------------------------------------------------------- /lexilla/test/unit/UnitTester.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/unit/UnitTester.vcxproj -------------------------------------------------------------------------------- /lexilla/test/unit/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/unit/catch.hpp -------------------------------------------------------------------------------- /lexilla/test/unit/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/unit/makefile -------------------------------------------------------------------------------- /lexilla/test/unit/test.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/unit/test.mak -------------------------------------------------------------------------------- /lexilla/test/unit/testCharacterSet.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/unit/testCharacterSet.cxx -------------------------------------------------------------------------------- /lexilla/test/unit/testLexerSimple.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/unit/testLexerSimple.cxx -------------------------------------------------------------------------------- /lexilla/test/unit/testOptionSet.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/unit/testOptionSet.cxx -------------------------------------------------------------------------------- /lexilla/test/unit/testPropSetSimple.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/unit/testPropSetSimple.cxx -------------------------------------------------------------------------------- /lexilla/test/unit/testSparseState.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/unit/testSparseState.cxx -------------------------------------------------------------------------------- /lexilla/test/unit/testWordList.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/unit/testWordList.cxx -------------------------------------------------------------------------------- /lexilla/test/unit/unitTest.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/test/unit/unitTest.cxx -------------------------------------------------------------------------------- /lexilla/tgzsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/tgzsrc -------------------------------------------------------------------------------- /lexilla/version.txt: -------------------------------------------------------------------------------- 1 | 526 -------------------------------------------------------------------------------- /lexilla/zipsrc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/lexilla/zipsrc.bat -------------------------------------------------------------------------------- /scintilla/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [**] 4 | indent_style = tab 5 | -------------------------------------------------------------------------------- /scintilla/.hg_archival.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/.hg_archival.txt -------------------------------------------------------------------------------- /scintilla/.hgeol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/.hgeol -------------------------------------------------------------------------------- /scintilla/.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/.hgignore -------------------------------------------------------------------------------- /scintilla/.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/.hgtags -------------------------------------------------------------------------------- /scintilla/CONTRIBUTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/CONTRIBUTING -------------------------------------------------------------------------------- /scintilla/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/License.txt -------------------------------------------------------------------------------- /scintilla/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/README -------------------------------------------------------------------------------- /scintilla/call/ScintillaCall.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/call/ScintillaCall.cxx -------------------------------------------------------------------------------- /scintilla/cocoa/InfoBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/cocoa/InfoBar.h -------------------------------------------------------------------------------- /scintilla/cocoa/InfoBar.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/cocoa/InfoBar.mm -------------------------------------------------------------------------------- /scintilla/cocoa/InfoBarCommunicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/cocoa/InfoBarCommunicator.h -------------------------------------------------------------------------------- /scintilla/cocoa/PlatCocoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/cocoa/PlatCocoa.h -------------------------------------------------------------------------------- /scintilla/cocoa/PlatCocoa.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/cocoa/PlatCocoa.mm -------------------------------------------------------------------------------- /scintilla/cocoa/QuartzTextLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/cocoa/QuartzTextLayout.h -------------------------------------------------------------------------------- /scintilla/cocoa/QuartzTextStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/cocoa/QuartzTextStyle.h -------------------------------------------------------------------------------- /scintilla/cocoa/QuartzTextStyleAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/cocoa/QuartzTextStyleAttribute.h -------------------------------------------------------------------------------- /scintilla/cocoa/Scintilla/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/cocoa/Scintilla/Info.plist -------------------------------------------------------------------------------- /scintilla/cocoa/Scintilla/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/cocoa/Scintilla/module.modulemap -------------------------------------------------------------------------------- /scintilla/cocoa/ScintillaCocoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/cocoa/ScintillaCocoa.h -------------------------------------------------------------------------------- /scintilla/cocoa/ScintillaCocoa.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/cocoa/ScintillaCocoa.mm -------------------------------------------------------------------------------- /scintilla/cocoa/ScintillaTest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/cocoa/ScintillaTest/Info.plist -------------------------------------------------------------------------------- /scintilla/cocoa/ScintillaTest/TestData.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/cocoa/ScintillaTest/TestData.sql -------------------------------------------------------------------------------- /scintilla/cocoa/ScintillaTest/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/cocoa/ScintillaTest/main.m -------------------------------------------------------------------------------- /scintilla/cocoa/ScintillaView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/cocoa/ScintillaView.h -------------------------------------------------------------------------------- /scintilla/cocoa/ScintillaView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/cocoa/ScintillaView.mm -------------------------------------------------------------------------------- /scintilla/cocoa/checkbuildosx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/cocoa/checkbuildosx.sh -------------------------------------------------------------------------------- /scintilla/cocoa/res/info_bar_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/cocoa/res/info_bar_bg.png -------------------------------------------------------------------------------- /scintilla/cocoa/res/info_bar_bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/cocoa/res/info_bar_bg@2x.png -------------------------------------------------------------------------------- /scintilla/cocoa/res/mac_cursor_busy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/cocoa/res/mac_cursor_busy.png -------------------------------------------------------------------------------- /scintilla/cocoa/res/mac_cursor_busy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/cocoa/res/mac_cursor_busy@2x.png -------------------------------------------------------------------------------- /scintilla/cocoa/res/mac_cursor_flipped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/cocoa/res/mac_cursor_flipped.png -------------------------------------------------------------------------------- /scintilla/cppcheck.suppress: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/cppcheck.suppress -------------------------------------------------------------------------------- /scintilla/delbin.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/delbin.bat -------------------------------------------------------------------------------- /scintilla/doc/AddSource.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/doc/AddSource.txt -------------------------------------------------------------------------------- /scintilla/doc/ChangeHistory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/doc/ChangeHistory.png -------------------------------------------------------------------------------- /scintilla/doc/Design.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/doc/Design.html -------------------------------------------------------------------------------- /scintilla/doc/Icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/doc/Icons.html -------------------------------------------------------------------------------- /scintilla/doc/Indicators.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/doc/Indicators.png -------------------------------------------------------------------------------- /scintilla/doc/Lexer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/doc/Lexer.txt -------------------------------------------------------------------------------- /scintilla/doc/Markers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/doc/Markers.png -------------------------------------------------------------------------------- /scintilla/doc/Privacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/doc/Privacy.html -------------------------------------------------------------------------------- /scintilla/doc/SciBreak.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/doc/SciBreak.jpg -------------------------------------------------------------------------------- /scintilla/doc/SciCoding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/doc/SciCoding.html -------------------------------------------------------------------------------- /scintilla/doc/SciRest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/doc/SciRest.jpg -------------------------------------------------------------------------------- /scintilla/doc/SciTEIco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/doc/SciTEIco.png -------------------------------------------------------------------------------- /scintilla/doc/SciWord.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/doc/SciWord.jpg -------------------------------------------------------------------------------- /scintilla/doc/Scintilla5Migration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/doc/Scintilla5Migration.html -------------------------------------------------------------------------------- /scintilla/doc/ScintillaDoc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/doc/ScintillaDoc.html -------------------------------------------------------------------------------- /scintilla/doc/ScintillaDownload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/doc/ScintillaDownload.html -------------------------------------------------------------------------------- /scintilla/doc/ScintillaHistory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/doc/ScintillaHistory.html -------------------------------------------------------------------------------- /scintilla/doc/ScintillaLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/doc/ScintillaLogo.png -------------------------------------------------------------------------------- /scintilla/doc/ScintillaLogo2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/doc/ScintillaLogo2x.png -------------------------------------------------------------------------------- /scintilla/doc/ScintillaRelated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/doc/ScintillaRelated.html -------------------------------------------------------------------------------- /scintilla/doc/ScintillaToDo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/doc/ScintillaToDo.html -------------------------------------------------------------------------------- /scintilla/doc/ScintillaUsage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/doc/ScintillaUsage.html -------------------------------------------------------------------------------- /scintilla/doc/StadiumVariants.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/doc/StadiumVariants.png -------------------------------------------------------------------------------- /scintilla/doc/Steps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/doc/Steps.html -------------------------------------------------------------------------------- /scintilla/doc/StyleMetadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/doc/StyleMetadata.html -------------------------------------------------------------------------------- /scintilla/doc/annotations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/doc/annotations.png -------------------------------------------------------------------------------- /scintilla/doc/eolannotation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/doc/eolannotation.png -------------------------------------------------------------------------------- /scintilla/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/doc/index.html -------------------------------------------------------------------------------- /scintilla/doc/styledmargin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/doc/styledmargin.png -------------------------------------------------------------------------------- /scintilla/gtk/Converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/gtk/Converter.h -------------------------------------------------------------------------------- /scintilla/gtk/DepGen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/gtk/DepGen.py -------------------------------------------------------------------------------- /scintilla/gtk/PlatGTK.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/gtk/PlatGTK.cxx -------------------------------------------------------------------------------- /scintilla/gtk/ScintillaGTK.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/gtk/ScintillaGTK.cxx -------------------------------------------------------------------------------- /scintilla/gtk/ScintillaGTK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/gtk/ScintillaGTK.h -------------------------------------------------------------------------------- /scintilla/gtk/ScintillaGTKAccessible.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/gtk/ScintillaGTKAccessible.cxx -------------------------------------------------------------------------------- /scintilla/gtk/ScintillaGTKAccessible.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/gtk/ScintillaGTKAccessible.h -------------------------------------------------------------------------------- /scintilla/gtk/Wrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/gtk/Wrappers.h -------------------------------------------------------------------------------- /scintilla/gtk/deps.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/gtk/deps.mak -------------------------------------------------------------------------------- /scintilla/gtk/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/gtk/makefile -------------------------------------------------------------------------------- /scintilla/gtk/scintilla-marshal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/gtk/scintilla-marshal.c -------------------------------------------------------------------------------- /scintilla/gtk/scintilla-marshal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/gtk/scintilla-marshal.h -------------------------------------------------------------------------------- /scintilla/gtk/scintilla-marshal.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/gtk/scintilla-marshal.list -------------------------------------------------------------------------------- /scintilla/include/ILexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/include/ILexer.h -------------------------------------------------------------------------------- /scintilla/include/ILoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/include/ILoader.h -------------------------------------------------------------------------------- /scintilla/include/Sci_Position.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/include/Sci_Position.h -------------------------------------------------------------------------------- /scintilla/include/Scintilla.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/include/Scintilla.h -------------------------------------------------------------------------------- /scintilla/include/Scintilla.iface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/include/Scintilla.iface -------------------------------------------------------------------------------- /scintilla/include/ScintillaCall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/include/ScintillaCall.h -------------------------------------------------------------------------------- /scintilla/include/ScintillaMessages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/include/ScintillaMessages.h -------------------------------------------------------------------------------- /scintilla/include/ScintillaStructures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/include/ScintillaStructures.h -------------------------------------------------------------------------------- /scintilla/include/ScintillaTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/include/ScintillaTypes.h -------------------------------------------------------------------------------- /scintilla/include/ScintillaWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/include/ScintillaWidget.h -------------------------------------------------------------------------------- /scintilla/qt/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/qt/README -------------------------------------------------------------------------------- /scintilla/qt/ScintillaEdit/WidgetGen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/qt/ScintillaEdit/WidgetGen.py -------------------------------------------------------------------------------- /scintilla/qt/ScintillaEditBase/Notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/qt/ScintillaEditBase/Notes.txt -------------------------------------------------------------------------------- /scintilla/qt/ScintillaEditBase/PlatQt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/qt/ScintillaEditBase/PlatQt.cpp -------------------------------------------------------------------------------- /scintilla/qt/ScintillaEditBase/PlatQt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/qt/ScintillaEditBase/PlatQt.h -------------------------------------------------------------------------------- /scintilla/scripts/CheckMentioned.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/scripts/CheckMentioned.py -------------------------------------------------------------------------------- /scintilla/scripts/Dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/scripts/Dependencies.py -------------------------------------------------------------------------------- /scintilla/scripts/Face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/scripts/Face.py -------------------------------------------------------------------------------- /scintilla/scripts/FileGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/scripts/FileGenerator.py -------------------------------------------------------------------------------- /scintilla/scripts/GenerateCaseConvert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/scripts/GenerateCaseConvert.py -------------------------------------------------------------------------------- /scintilla/scripts/HFacer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/scripts/HFacer.py -------------------------------------------------------------------------------- /scintilla/scripts/HeaderCheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/scripts/HeaderCheck.py -------------------------------------------------------------------------------- /scintilla/scripts/HeaderOrder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/scripts/HeaderOrder.txt -------------------------------------------------------------------------------- /scintilla/scripts/LexGen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/scripts/LexGen.py -------------------------------------------------------------------------------- /scintilla/scripts/ScintillaAPIFacer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/scripts/ScintillaAPIFacer.py -------------------------------------------------------------------------------- /scintilla/scripts/ScintillaData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/scripts/ScintillaData.py -------------------------------------------------------------------------------- /scintilla/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scintilla/scripts/archive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/scripts/archive.sh -------------------------------------------------------------------------------- /scintilla/src/AutoComplete.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/AutoComplete.cxx -------------------------------------------------------------------------------- /scintilla/src/AutoComplete.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/AutoComplete.h -------------------------------------------------------------------------------- /scintilla/src/CallTip.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/CallTip.cxx -------------------------------------------------------------------------------- /scintilla/src/CallTip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/CallTip.h -------------------------------------------------------------------------------- /scintilla/src/CaseConvert.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/CaseConvert.cxx -------------------------------------------------------------------------------- /scintilla/src/CaseConvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/CaseConvert.h -------------------------------------------------------------------------------- /scintilla/src/CaseFolder.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/CaseFolder.cxx -------------------------------------------------------------------------------- /scintilla/src/CaseFolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/CaseFolder.h -------------------------------------------------------------------------------- /scintilla/src/CellBuffer.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/CellBuffer.cxx -------------------------------------------------------------------------------- /scintilla/src/CellBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/CellBuffer.h -------------------------------------------------------------------------------- /scintilla/src/ChangeHistory.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/ChangeHistory.cxx -------------------------------------------------------------------------------- /scintilla/src/ChangeHistory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/ChangeHistory.h -------------------------------------------------------------------------------- /scintilla/src/CharClassify.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/CharClassify.cxx -------------------------------------------------------------------------------- /scintilla/src/CharClassify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/CharClassify.h -------------------------------------------------------------------------------- /scintilla/src/CharacterCategoryMap.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/CharacterCategoryMap.cxx -------------------------------------------------------------------------------- /scintilla/src/CharacterCategoryMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/CharacterCategoryMap.h -------------------------------------------------------------------------------- /scintilla/src/CharacterType.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/CharacterType.cxx -------------------------------------------------------------------------------- /scintilla/src/CharacterType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/CharacterType.h -------------------------------------------------------------------------------- /scintilla/src/ContractionState.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/ContractionState.cxx -------------------------------------------------------------------------------- /scintilla/src/ContractionState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/ContractionState.h -------------------------------------------------------------------------------- /scintilla/src/DBCS.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/DBCS.cxx -------------------------------------------------------------------------------- /scintilla/src/DBCS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/DBCS.h -------------------------------------------------------------------------------- /scintilla/src/Debugging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/Debugging.h -------------------------------------------------------------------------------- /scintilla/src/Decoration.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/Decoration.cxx -------------------------------------------------------------------------------- /scintilla/src/Decoration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/Decoration.h -------------------------------------------------------------------------------- /scintilla/src/Document.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/Document.cxx -------------------------------------------------------------------------------- /scintilla/src/Document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/Document.h -------------------------------------------------------------------------------- /scintilla/src/EditModel.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/EditModel.cxx -------------------------------------------------------------------------------- /scintilla/src/EditModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/EditModel.h -------------------------------------------------------------------------------- /scintilla/src/EditView.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/EditView.cxx -------------------------------------------------------------------------------- /scintilla/src/EditView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/EditView.h -------------------------------------------------------------------------------- /scintilla/src/Editor.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/Editor.cxx -------------------------------------------------------------------------------- /scintilla/src/Editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/Editor.h -------------------------------------------------------------------------------- /scintilla/src/ElapsedPeriod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/ElapsedPeriod.h -------------------------------------------------------------------------------- /scintilla/src/Geometry.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/Geometry.cxx -------------------------------------------------------------------------------- /scintilla/src/Geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/Geometry.h -------------------------------------------------------------------------------- /scintilla/src/Indicator.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/Indicator.cxx -------------------------------------------------------------------------------- /scintilla/src/Indicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/Indicator.h -------------------------------------------------------------------------------- /scintilla/src/KeyMap.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/KeyMap.cxx -------------------------------------------------------------------------------- /scintilla/src/KeyMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/KeyMap.h -------------------------------------------------------------------------------- /scintilla/src/LineMarker.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/LineMarker.cxx -------------------------------------------------------------------------------- /scintilla/src/LineMarker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/LineMarker.h -------------------------------------------------------------------------------- /scintilla/src/MarginView.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/MarginView.cxx -------------------------------------------------------------------------------- /scintilla/src/MarginView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/MarginView.h -------------------------------------------------------------------------------- /scintilla/src/Partitioning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/Partitioning.h -------------------------------------------------------------------------------- /scintilla/src/PerLine.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/PerLine.cxx -------------------------------------------------------------------------------- /scintilla/src/PerLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/PerLine.h -------------------------------------------------------------------------------- /scintilla/src/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/Platform.h -------------------------------------------------------------------------------- /scintilla/src/Position.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/Position.h -------------------------------------------------------------------------------- /scintilla/src/PositionCache.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/PositionCache.cxx -------------------------------------------------------------------------------- /scintilla/src/PositionCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/PositionCache.h -------------------------------------------------------------------------------- /scintilla/src/RESearch.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/RESearch.cxx -------------------------------------------------------------------------------- /scintilla/src/RESearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/RESearch.h -------------------------------------------------------------------------------- /scintilla/src/RunStyles.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/RunStyles.cxx -------------------------------------------------------------------------------- /scintilla/src/RunStyles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/RunStyles.h -------------------------------------------------------------------------------- /scintilla/src/SciTE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/SciTE.properties -------------------------------------------------------------------------------- /scintilla/src/ScintillaBase.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/ScintillaBase.cxx -------------------------------------------------------------------------------- /scintilla/src/ScintillaBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/ScintillaBase.h -------------------------------------------------------------------------------- /scintilla/src/Selection.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/Selection.cxx -------------------------------------------------------------------------------- /scintilla/src/Selection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/Selection.h -------------------------------------------------------------------------------- /scintilla/src/SparseVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/SparseVector.h -------------------------------------------------------------------------------- /scintilla/src/SplitVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/SplitVector.h -------------------------------------------------------------------------------- /scintilla/src/Style.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/Style.cxx -------------------------------------------------------------------------------- /scintilla/src/Style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/Style.h -------------------------------------------------------------------------------- /scintilla/src/UniConversion.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/UniConversion.cxx -------------------------------------------------------------------------------- /scintilla/src/UniConversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/UniConversion.h -------------------------------------------------------------------------------- /scintilla/src/UniqueString.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/UniqueString.cxx -------------------------------------------------------------------------------- /scintilla/src/UniqueString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/UniqueString.h -------------------------------------------------------------------------------- /scintilla/src/ViewStyle.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/ViewStyle.cxx -------------------------------------------------------------------------------- /scintilla/src/ViewStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/ViewStyle.h -------------------------------------------------------------------------------- /scintilla/src/XPM.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/XPM.cxx -------------------------------------------------------------------------------- /scintilla/src/XPM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/src/XPM.h -------------------------------------------------------------------------------- /scintilla/test/MessageNumbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/test/MessageNumbers.py -------------------------------------------------------------------------------- /scintilla/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/test/README -------------------------------------------------------------------------------- /scintilla/test/ScintillaCallable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/test/ScintillaCallable.py -------------------------------------------------------------------------------- /scintilla/test/XiteMenu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/test/XiteMenu.py -------------------------------------------------------------------------------- /scintilla/test/XiteWin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/test/XiteWin.py -------------------------------------------------------------------------------- /scintilla/test/gi/Scintilla-0.1.gir.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/test/gi/Scintilla-0.1.gir.good -------------------------------------------------------------------------------- /scintilla/test/gi/filter-scintilla-h.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/test/gi/filter-scintilla-h.py -------------------------------------------------------------------------------- /scintilla/test/gi/gi-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/test/gi/gi-test.py -------------------------------------------------------------------------------- /scintilla/test/gi/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/test/gi/makefile -------------------------------------------------------------------------------- /scintilla/test/performanceTests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/test/performanceTests.py -------------------------------------------------------------------------------- /scintilla/test/simpleTests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/test/simpleTests.py -------------------------------------------------------------------------------- /scintilla/test/unit/LICENSE_1_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/test/unit/LICENSE_1_0.txt -------------------------------------------------------------------------------- /scintilla/test/unit/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/test/unit/README -------------------------------------------------------------------------------- /scintilla/test/unit/Sci.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/test/unit/Sci.natvis -------------------------------------------------------------------------------- /scintilla/test/unit/SciTE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/test/unit/SciTE.properties -------------------------------------------------------------------------------- /scintilla/test/unit/UnitTester.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/test/unit/UnitTester.cxx -------------------------------------------------------------------------------- /scintilla/test/unit/UnitTester.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/test/unit/UnitTester.vcxproj -------------------------------------------------------------------------------- /scintilla/test/unit/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/test/unit/catch.hpp -------------------------------------------------------------------------------- /scintilla/test/unit/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/test/unit/makefile -------------------------------------------------------------------------------- /scintilla/test/unit/test.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/test/unit/test.mak -------------------------------------------------------------------------------- /scintilla/test/unit/testCellBuffer.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/test/unit/testCellBuffer.cxx -------------------------------------------------------------------------------- /scintilla/test/unit/testCharClassify.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/test/unit/testCharClassify.cxx -------------------------------------------------------------------------------- /scintilla/test/unit/testDecoration.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/test/unit/testDecoration.cxx -------------------------------------------------------------------------------- /scintilla/test/unit/testDocument.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/test/unit/testDocument.cxx -------------------------------------------------------------------------------- /scintilla/test/unit/testGeometry.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/test/unit/testGeometry.cxx -------------------------------------------------------------------------------- /scintilla/test/unit/testPartitioning.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/test/unit/testPartitioning.cxx -------------------------------------------------------------------------------- /scintilla/test/unit/testPerLine.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/test/unit/testPerLine.cxx -------------------------------------------------------------------------------- /scintilla/test/unit/testRESearch.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/test/unit/testRESearch.cxx -------------------------------------------------------------------------------- /scintilla/test/unit/testRunStyles.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/test/unit/testRunStyles.cxx -------------------------------------------------------------------------------- /scintilla/test/unit/testSparseVector.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/test/unit/testSparseVector.cxx -------------------------------------------------------------------------------- /scintilla/test/unit/testSplitVector.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/test/unit/testSplitVector.cxx -------------------------------------------------------------------------------- /scintilla/test/unit/testUniConversion.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/test/unit/testUniConversion.cxx -------------------------------------------------------------------------------- /scintilla/test/unit/unitTest.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/test/unit/unitTest.cxx -------------------------------------------------------------------------------- /scintilla/test/win32Tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/test/win32Tests.py -------------------------------------------------------------------------------- /scintilla/test/xite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/test/xite.py -------------------------------------------------------------------------------- /scintilla/tgzsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/tgzsrc -------------------------------------------------------------------------------- /scintilla/version.txt: -------------------------------------------------------------------------------- 1 | 536 2 | -------------------------------------------------------------------------------- /scintilla/win32/DepGen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/win32/DepGen.py -------------------------------------------------------------------------------- /scintilla/win32/HanjaDic.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/win32/HanjaDic.cxx -------------------------------------------------------------------------------- /scintilla/win32/HanjaDic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/win32/HanjaDic.h -------------------------------------------------------------------------------- /scintilla/win32/PlatWin.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/win32/PlatWin.cxx -------------------------------------------------------------------------------- /scintilla/win32/PlatWin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/win32/PlatWin.h -------------------------------------------------------------------------------- /scintilla/win32/SciTE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/win32/SciTE.properties -------------------------------------------------------------------------------- /scintilla/win32/ScintRes.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/win32/ScintRes.rc -------------------------------------------------------------------------------- /scintilla/win32/Scintilla.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | Scintilla_DirectFunction -------------------------------------------------------------------------------- /scintilla/win32/Scintilla.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/win32/Scintilla.vcxproj -------------------------------------------------------------------------------- /scintilla/win32/Scintilla.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/win32/Scintilla.vcxproj.user -------------------------------------------------------------------------------- /scintilla/win32/ScintillaDLL.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/win32/ScintillaDLL.cxx -------------------------------------------------------------------------------- /scintilla/win32/ScintillaWin.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/win32/ScintillaWin.cxx -------------------------------------------------------------------------------- /scintilla/win32/ScintillaWin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/win32/ScintillaWin.h -------------------------------------------------------------------------------- /scintilla/win32/WinTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/win32/WinTypes.h -------------------------------------------------------------------------------- /scintilla/win32/deps.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/win32/deps.mak -------------------------------------------------------------------------------- /scintilla/win32/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/win32/makefile -------------------------------------------------------------------------------- /scintilla/win32/nmdeps.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/win32/nmdeps.mak -------------------------------------------------------------------------------- /scintilla/win32/scintilla.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/win32/scintilla.mak -------------------------------------------------------------------------------- /scintilla/zipsrc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeneficialCode/KReClassEx/HEAD/scintilla/zipsrc.bat --------------------------------------------------------------------------------