├── .gitattributes ├── .gitignore ├── .gitmodules ├── DumpInf ├── DumpInf.cpp ├── DumpInf.vcxproj ├── DumpInf.vcxproj.filters ├── pch.cpp └── pch.h ├── InfCore ├── InfCore.cpp ├── InfCore.vcxproj ├── InfCore.vcxproj.filters ├── InfFile.cpp ├── InfFile.h ├── pch.cpp └── pch.h ├── InfStudio.sln ├── InfStudio ├── AboutDlg.cpp ├── AboutDlg.h ├── AppSettings.cpp ├── AppSettings.h ├── InfStudio.cpp ├── InfStudio.h ├── InfStudio.rc ├── InfStudio.vcxproj ├── InfStudio.vcxproj.filters ├── InfView.cpp ├── InfView.h ├── Interfaces.h ├── MainFrm.cpp ├── MainFrm.h ├── MainView.cpp ├── MainView.h ├── RecentFilesManager.cpp ├── RecentFilesManager.h ├── ScintillaCtrl.h ├── SecurityHelper.cpp ├── SecurityHelper.h ├── ViewBase.h ├── packages.config ├── pch.cpp ├── pch.h ├── res │ ├── InfStudio.ico │ ├── copy.ico │ ├── cut.ico │ ├── device.ico │ ├── devices.ico │ ├── file-delete.ico │ ├── file-write.ico │ ├── find.ico │ ├── folder_into.ico │ ├── format_text.ico │ ├── open.ico │ ├── paste.ico │ ├── pin.ico │ ├── redo.ico │ ├── refresh.ico │ ├── registry_delete.ico │ ├── registry_edit.ico │ ├── save.ico │ ├── save_as.ico │ ├── section.ico │ ├── sections.ico │ ├── undo.ico │ └── version.ico └── resource.h ├── LICENSE.txt ├── README.md ├── 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 │ ├── LexObjC.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 │ ├── LexSearchResult.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 │ ├── LexUser.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 │ ├── 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 │ │ │ ├── SciTE.properties │ │ │ ├── x.bsh │ │ │ ├── x.bsh.folded │ │ │ └── x.bsh.styled │ │ ├── batch │ │ │ ├── SciTE.properties │ │ │ ├── x.bat │ │ │ ├── x.bat.folded │ │ │ └── x.bat.styled │ │ ├── caml │ │ │ ├── AllStyles.ml │ │ │ ├── AllStyles.ml.folded │ │ │ ├── AllStyles.ml.styled │ │ │ └── SciTE.properties │ │ ├── cpp │ │ │ ├── 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 │ │ ├── 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 │ │ │ ├── SciTE.properties │ │ │ ├── x.fs │ │ │ ├── x.fs.folded │ │ │ └── x.fs.styled │ │ ├── gdscript │ │ │ ├── AllStyles.gd │ │ │ ├── AllStyles.gd.folded │ │ │ ├── AllStyles.gd.styled │ │ │ └── SciTE.properties │ │ ├── hypertext │ │ │ ├── Bug2207.html │ │ │ ├── Bug2207.html.folded │ │ │ ├── Bug2207.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 │ │ │ ├── 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 │ │ ├── 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 │ │ │ ├── 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 │ │ │ └── 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 │ │ │ ├── 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 │ │ │ └── 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 │ │ ├── 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 │ │ ├── python │ │ │ ├── AllStyles.py │ │ │ ├── AllStyles.py.folded │ │ │ ├── AllStyles.py.styled │ │ │ ├── SciTE.properties │ │ │ ├── attributes │ │ │ │ ├── SciTE.properties │ │ │ │ ├── attributes.py │ │ │ │ ├── attributes.py.folded │ │ │ │ └── attributes.py.styled │ │ │ ├── x.py │ │ │ ├── x.py.folded │ │ │ └── x.py.styled │ │ ├── raku │ │ │ ├── SciTE.properties │ │ │ ├── x.p6 │ │ │ ├── x.p6.folded │ │ │ └── x.p6.styled │ │ ├── ruby │ │ │ ├── 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 │ │ ├── x12 │ │ │ ├── SciTE.properties │ │ │ ├── x.x12 │ │ │ ├── x.x12.folded │ │ │ └── x.x12.styled │ │ └── yaml │ │ │ ├── SciTE.properties │ │ │ ├── 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 │ │ ├── testPropSetSimple.cxx │ │ ├── testSparseState.cxx │ │ ├── testWordList.cxx │ │ └── unitTest.cxx ├── tgzsrc ├── version.txt └── zipsrc.bat └── scintilla ├── 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 ├── delbin.bat ├── doc ├── AddSource.txt ├── 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 ├── 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 ├── BoostRegexSearch.h ├── 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 ├── 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.aps ├── 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/zodiacon/InfStudio/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/.gitmodules -------------------------------------------------------------------------------- /DumpInf/DumpInf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/DumpInf/DumpInf.cpp -------------------------------------------------------------------------------- /DumpInf/DumpInf.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/DumpInf/DumpInf.vcxproj -------------------------------------------------------------------------------- /DumpInf/DumpInf.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/DumpInf/DumpInf.vcxproj.filters -------------------------------------------------------------------------------- /DumpInf/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /DumpInf/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/DumpInf/pch.h -------------------------------------------------------------------------------- /InfCore/InfCore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/InfCore/InfCore.cpp -------------------------------------------------------------------------------- /InfCore/InfCore.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/InfCore/InfCore.vcxproj -------------------------------------------------------------------------------- /InfCore/InfCore.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/InfCore/InfCore.vcxproj.filters -------------------------------------------------------------------------------- /InfCore/InfFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/InfCore/InfFile.cpp -------------------------------------------------------------------------------- /InfCore/InfFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/InfCore/InfFile.h -------------------------------------------------------------------------------- /InfCore/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/InfCore/pch.cpp -------------------------------------------------------------------------------- /InfCore/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/InfCore/pch.h -------------------------------------------------------------------------------- /InfStudio.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/InfStudio.sln -------------------------------------------------------------------------------- /InfStudio/AboutDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/InfStudio/AboutDlg.cpp -------------------------------------------------------------------------------- /InfStudio/AboutDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/InfStudio/AboutDlg.h -------------------------------------------------------------------------------- /InfStudio/AppSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/InfStudio/AppSettings.cpp -------------------------------------------------------------------------------- /InfStudio/AppSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/InfStudio/AppSettings.h -------------------------------------------------------------------------------- /InfStudio/InfStudio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/InfStudio/InfStudio.cpp -------------------------------------------------------------------------------- /InfStudio/InfStudio.h: -------------------------------------------------------------------------------- 1 | // InfStudio.h 2 | -------------------------------------------------------------------------------- /InfStudio/InfStudio.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/InfStudio/InfStudio.rc -------------------------------------------------------------------------------- /InfStudio/InfStudio.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/InfStudio/InfStudio.vcxproj -------------------------------------------------------------------------------- /InfStudio/InfStudio.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/InfStudio/InfStudio.vcxproj.filters -------------------------------------------------------------------------------- /InfStudio/InfView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/InfStudio/InfView.cpp -------------------------------------------------------------------------------- /InfStudio/InfView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/InfStudio/InfView.h -------------------------------------------------------------------------------- /InfStudio/Interfaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/InfStudio/Interfaces.h -------------------------------------------------------------------------------- /InfStudio/MainFrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/InfStudio/MainFrm.cpp -------------------------------------------------------------------------------- /InfStudio/MainFrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/InfStudio/MainFrm.h -------------------------------------------------------------------------------- /InfStudio/MainView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/InfStudio/MainView.cpp -------------------------------------------------------------------------------- /InfStudio/MainView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/InfStudio/MainView.h -------------------------------------------------------------------------------- /InfStudio/RecentFilesManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/InfStudio/RecentFilesManager.cpp -------------------------------------------------------------------------------- /InfStudio/RecentFilesManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/InfStudio/RecentFilesManager.h -------------------------------------------------------------------------------- /InfStudio/ScintillaCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/InfStudio/ScintillaCtrl.h -------------------------------------------------------------------------------- /InfStudio/SecurityHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/InfStudio/SecurityHelper.cpp -------------------------------------------------------------------------------- /InfStudio/SecurityHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/InfStudio/SecurityHelper.h -------------------------------------------------------------------------------- /InfStudio/ViewBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/InfStudio/ViewBase.h -------------------------------------------------------------------------------- /InfStudio/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/InfStudio/packages.config -------------------------------------------------------------------------------- /InfStudio/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /InfStudio/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/InfStudio/pch.h -------------------------------------------------------------------------------- /InfStudio/res/InfStudio.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/InfStudio/res/InfStudio.ico -------------------------------------------------------------------------------- /InfStudio/res/copy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/InfStudio/res/copy.ico -------------------------------------------------------------------------------- /InfStudio/res/cut.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/InfStudio/res/cut.ico -------------------------------------------------------------------------------- /InfStudio/res/device.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/InfStudio/res/device.ico -------------------------------------------------------------------------------- /InfStudio/res/devices.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/InfStudio/res/devices.ico -------------------------------------------------------------------------------- /InfStudio/res/file-delete.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/InfStudio/res/file-delete.ico -------------------------------------------------------------------------------- /InfStudio/res/file-write.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/InfStudio/res/file-write.ico -------------------------------------------------------------------------------- /InfStudio/res/find.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/InfStudio/res/find.ico -------------------------------------------------------------------------------- /InfStudio/res/folder_into.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/InfStudio/res/folder_into.ico -------------------------------------------------------------------------------- /InfStudio/res/format_text.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/InfStudio/res/format_text.ico -------------------------------------------------------------------------------- /InfStudio/res/open.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/InfStudio/res/open.ico -------------------------------------------------------------------------------- /InfStudio/res/paste.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/InfStudio/res/paste.ico -------------------------------------------------------------------------------- /InfStudio/res/pin.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/InfStudio/res/pin.ico -------------------------------------------------------------------------------- /InfStudio/res/redo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/InfStudio/res/redo.ico -------------------------------------------------------------------------------- /InfStudio/res/refresh.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/InfStudio/res/refresh.ico -------------------------------------------------------------------------------- /InfStudio/res/registry_delete.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/InfStudio/res/registry_delete.ico -------------------------------------------------------------------------------- /InfStudio/res/registry_edit.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/InfStudio/res/registry_edit.ico -------------------------------------------------------------------------------- /InfStudio/res/save.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/InfStudio/res/save.ico -------------------------------------------------------------------------------- /InfStudio/res/save_as.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/InfStudio/res/save_as.ico -------------------------------------------------------------------------------- /InfStudio/res/section.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/InfStudio/res/section.ico -------------------------------------------------------------------------------- /InfStudio/res/sections.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/InfStudio/res/sections.ico -------------------------------------------------------------------------------- /InfStudio/res/undo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/InfStudio/res/undo.ico -------------------------------------------------------------------------------- /InfStudio/res/version.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/InfStudio/res/version.ico -------------------------------------------------------------------------------- /InfStudio/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/InfStudio/resource.h -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/README.md -------------------------------------------------------------------------------- /lexilla/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/.gitattributes -------------------------------------------------------------------------------- /lexilla/.github/workflows/build-check-macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/.github/workflows/build-check-macos.yml -------------------------------------------------------------------------------- /lexilla/.github/workflows/build-check-win32.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/.github/workflows/build-check-win32.yml -------------------------------------------------------------------------------- /lexilla/.github/workflows/build-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/.github/workflows/build-check.yml -------------------------------------------------------------------------------- /lexilla/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/.gitignore -------------------------------------------------------------------------------- /lexilla/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/.travis.yml -------------------------------------------------------------------------------- /lexilla/CONTRIBUTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/CONTRIBUTING -------------------------------------------------------------------------------- /lexilla/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/License.txt -------------------------------------------------------------------------------- /lexilla/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/README -------------------------------------------------------------------------------- /lexilla/access/LexillaAccess.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/access/LexillaAccess.cxx -------------------------------------------------------------------------------- /lexilla/access/LexillaAccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/access/LexillaAccess.h -------------------------------------------------------------------------------- /lexilla/access/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/access/README -------------------------------------------------------------------------------- /lexilla/cppcheck.suppress: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/cppcheck.suppress -------------------------------------------------------------------------------- /lexilla/delbin.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/delbin.bat -------------------------------------------------------------------------------- /lexilla/doc/Lexilla.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/doc/Lexilla.html -------------------------------------------------------------------------------- /lexilla/doc/LexillaDoc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/doc/LexillaDoc.html -------------------------------------------------------------------------------- /lexilla/doc/LexillaDownload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/doc/LexillaDownload.html -------------------------------------------------------------------------------- /lexilla/doc/LexillaHistory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/doc/LexillaHistory.html -------------------------------------------------------------------------------- /lexilla/doc/LexillaLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/doc/LexillaLogo.png -------------------------------------------------------------------------------- /lexilla/doc/LexillaLogo2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/doc/LexillaLogo2x.png -------------------------------------------------------------------------------- /lexilla/examples/CheckLexilla/CheckLexilla.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/examples/CheckLexilla/CheckLexilla.c -------------------------------------------------------------------------------- /lexilla/examples/CheckLexilla/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/examples/CheckLexilla/makefile -------------------------------------------------------------------------------- /lexilla/examples/SimpleLexer/SimpleLexer.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/examples/SimpleLexer/SimpleLexer.cxx -------------------------------------------------------------------------------- /lexilla/examples/SimpleLexer/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/examples/SimpleLexer/makefile -------------------------------------------------------------------------------- /lexilla/include/LexicalStyles.iface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/include/LexicalStyles.iface -------------------------------------------------------------------------------- /lexilla/include/Lexilla.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/include/Lexilla.h -------------------------------------------------------------------------------- /lexilla/include/SciLexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/include/SciLexer.h -------------------------------------------------------------------------------- /lexilla/lexers/LexA68k.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexA68k.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexAPDL.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexAPDL.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexASY.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexASY.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexAU3.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexAU3.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexAVE.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexAVE.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexAVS.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexAVS.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexAbaqus.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexAbaqus.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexAda.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexAda.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexAsciidoc.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexAsciidoc.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexAsm.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexAsm.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexAsn1.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexAsn1.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexBaan.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexBaan.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexBash.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexBash.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexBasic.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexBasic.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexBatch.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexBatch.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexBibTeX.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexBibTeX.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexBullant.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexBullant.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexCIL.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexCIL.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexCLW.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexCLW.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexCOBOL.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexCOBOL.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexCPP.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexCPP.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexCSS.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexCSS.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexCaml.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexCaml.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexCmake.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexCmake.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexCoffeeScript.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexCoffeeScript.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexConf.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexConf.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexCrontab.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexCrontab.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexCsound.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexCsound.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexD.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexD.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexDMAP.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexDMAP.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexDMIS.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexDMIS.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexDataflex.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexDataflex.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexDiff.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexDiff.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexECL.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexECL.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexEDIFACT.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexEDIFACT.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexEScript.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexEScript.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexEiffel.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexEiffel.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexErlang.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexErlang.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexErrorList.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexErrorList.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexFSharp.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexFSharp.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexFlagship.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexFlagship.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexForth.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexForth.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexFortran.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexFortran.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexGAP.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexGAP.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexGDScript.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexGDScript.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexGui4Cli.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexGui4Cli.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexHTML.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexHTML.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexHaskell.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexHaskell.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexHex.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexHex.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexHollywood.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexHollywood.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexIndent.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexIndent.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexInno.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexInno.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexJSON.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexJSON.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexJulia.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexJulia.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexKVIrc.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexKVIrc.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexKix.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexKix.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexLaTeX.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexLaTeX.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexLisp.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexLisp.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexLout.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexLout.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexLua.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexLua.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexMMIXAL.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexMMIXAL.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexMPT.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexMPT.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexMSSQL.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexMSSQL.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexMagik.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexMagik.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexMake.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexMake.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexMarkdown.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexMarkdown.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexMatlab.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexMatlab.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexMaxima.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexMaxima.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexMetapost.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexMetapost.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexModula.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexModula.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexMySQL.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexMySQL.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexNim.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexNim.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexNimrod.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexNimrod.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexNsis.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexNsis.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexNull.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexNull.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexOScript.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexOScript.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexObjC.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexObjC.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexOpal.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexOpal.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexPB.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexPB.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexPLM.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexPLM.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexPO.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexPO.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexPOV.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexPOV.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexPS.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexPS.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexPascal.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexPascal.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexPerl.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexPerl.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexPowerPro.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexPowerPro.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexPowerShell.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexPowerShell.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexProgress.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexProgress.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexProps.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexProps.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexPython.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexPython.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexR.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexR.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexRaku.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexRaku.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexRebol.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexRebol.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexRegistry.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexRegistry.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexRuby.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexRuby.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexRust.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexRust.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexSAS.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexSAS.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexSML.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexSML.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexSQL.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexSQL.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexSTTXT.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexSTTXT.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexScriptol.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexScriptol.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexSearchResult.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexSearchResult.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexSmalltalk.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexSmalltalk.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexSorcus.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexSorcus.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexSpecman.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexSpecman.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexSpice.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexSpice.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexStata.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexStata.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexTACL.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexTACL.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexTADS3.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexTADS3.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexTAL.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexTAL.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexTCL.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexTCL.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexTCMD.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexTCMD.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexTeX.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexTeX.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexTxt2tags.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexTxt2tags.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexUser.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexUser.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexVB.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexVB.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexVHDL.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexVHDL.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexVerilog.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexVerilog.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexVisualProlog.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexVisualProlog.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexX12.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexX12.cxx -------------------------------------------------------------------------------- /lexilla/lexers/LexYAML.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexers/LexYAML.cxx -------------------------------------------------------------------------------- /lexilla/lexlib/Accessor.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexlib/Accessor.cxx -------------------------------------------------------------------------------- /lexilla/lexlib/Accessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexlib/Accessor.h -------------------------------------------------------------------------------- /lexilla/lexlib/CatalogueModules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexlib/CatalogueModules.h -------------------------------------------------------------------------------- /lexilla/lexlib/CharacterCategory.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexlib/CharacterCategory.cxx -------------------------------------------------------------------------------- /lexilla/lexlib/CharacterCategory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexlib/CharacterCategory.h -------------------------------------------------------------------------------- /lexilla/lexlib/CharacterSet.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexlib/CharacterSet.cxx -------------------------------------------------------------------------------- /lexilla/lexlib/CharacterSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexlib/CharacterSet.h -------------------------------------------------------------------------------- /lexilla/lexlib/DefaultLexer.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexlib/DefaultLexer.cxx -------------------------------------------------------------------------------- /lexilla/lexlib/DefaultLexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexlib/DefaultLexer.h -------------------------------------------------------------------------------- /lexilla/lexlib/LexAccessor.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexlib/LexAccessor.cxx -------------------------------------------------------------------------------- /lexilla/lexlib/LexAccessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexlib/LexAccessor.h -------------------------------------------------------------------------------- /lexilla/lexlib/LexerBase.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexlib/LexerBase.cxx -------------------------------------------------------------------------------- /lexilla/lexlib/LexerBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexlib/LexerBase.h -------------------------------------------------------------------------------- /lexilla/lexlib/LexerModule.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexlib/LexerModule.cxx -------------------------------------------------------------------------------- /lexilla/lexlib/LexerModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexlib/LexerModule.h -------------------------------------------------------------------------------- /lexilla/lexlib/LexerNoExceptions.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexlib/LexerNoExceptions.cxx -------------------------------------------------------------------------------- /lexilla/lexlib/LexerNoExceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexlib/LexerNoExceptions.h -------------------------------------------------------------------------------- /lexilla/lexlib/LexerSimple.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexlib/LexerSimple.cxx -------------------------------------------------------------------------------- /lexilla/lexlib/LexerSimple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexlib/LexerSimple.h -------------------------------------------------------------------------------- /lexilla/lexlib/OptionSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexlib/OptionSet.h -------------------------------------------------------------------------------- /lexilla/lexlib/PropSetSimple.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexlib/PropSetSimple.cxx -------------------------------------------------------------------------------- /lexilla/lexlib/PropSetSimple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexlib/PropSetSimple.h -------------------------------------------------------------------------------- /lexilla/lexlib/SparseState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexlib/SparseState.h -------------------------------------------------------------------------------- /lexilla/lexlib/StringCopy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexlib/StringCopy.h -------------------------------------------------------------------------------- /lexilla/lexlib/StyleContext.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexlib/StyleContext.cxx -------------------------------------------------------------------------------- /lexilla/lexlib/StyleContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexlib/StyleContext.h -------------------------------------------------------------------------------- /lexilla/lexlib/SubStyles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexlib/SubStyles.h -------------------------------------------------------------------------------- /lexilla/lexlib/WordList.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexlib/WordList.cxx -------------------------------------------------------------------------------- /lexilla/lexlib/WordList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/lexlib/WordList.h -------------------------------------------------------------------------------- /lexilla/scripts/HeaderOrder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/scripts/HeaderOrder.txt -------------------------------------------------------------------------------- /lexilla/scripts/LexFacer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/scripts/LexFacer.py -------------------------------------------------------------------------------- /lexilla/scripts/LexillaData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/scripts/LexillaData.py -------------------------------------------------------------------------------- /lexilla/scripts/LexillaGen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/scripts/LexillaGen.py -------------------------------------------------------------------------------- /lexilla/scripts/LexillaLogo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/scripts/LexillaLogo.py -------------------------------------------------------------------------------- /lexilla/scripts/RunTest.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/scripts/RunTest.bat -------------------------------------------------------------------------------- /lexilla/scripts/RunTest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/scripts/RunTest.sh -------------------------------------------------------------------------------- /lexilla/src/DepGen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/src/DepGen.py -------------------------------------------------------------------------------- /lexilla/src/Lexilla.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/src/Lexilla.cxx -------------------------------------------------------------------------------- /lexilla/src/Lexilla.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/src/Lexilla.def -------------------------------------------------------------------------------- /lexilla/src/Lexilla.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/src/Lexilla.pro -------------------------------------------------------------------------------- /lexilla/src/Lexilla.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/src/Lexilla.vcxproj -------------------------------------------------------------------------------- /lexilla/src/Lexilla/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/src/Lexilla/Info.plist -------------------------------------------------------------------------------- /lexilla/src/Lexilla/Lexilla.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/src/Lexilla/Lexilla.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /lexilla/src/Lexilla/Lexilla.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/src/Lexilla/Lexilla.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /lexilla/src/LexillaVersion.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/src/LexillaVersion.rc -------------------------------------------------------------------------------- /lexilla/src/deps.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/src/deps.mak -------------------------------------------------------------------------------- /lexilla/src/lexilla.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/src/lexilla.mak -------------------------------------------------------------------------------- /lexilla/src/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/src/makefile -------------------------------------------------------------------------------- /lexilla/src/nmdeps.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/src/nmdeps.mak -------------------------------------------------------------------------------- /lexilla/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/README -------------------------------------------------------------------------------- /lexilla/test/TestDocument.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/TestDocument.cxx -------------------------------------------------------------------------------- /lexilla/test/TestDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/TestDocument.h -------------------------------------------------------------------------------- /lexilla/test/TestLexers.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/TestLexers.cxx -------------------------------------------------------------------------------- /lexilla/test/TestLexers.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/TestLexers.vcxproj -------------------------------------------------------------------------------- /lexilla/test/examples/asciidoc/AllStyles.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/asciidoc/AllStyles.adoc -------------------------------------------------------------------------------- /lexilla/test/examples/asciidoc/AllStyles.adoc.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/asciidoc/AllStyles.adoc.folded -------------------------------------------------------------------------------- /lexilla/test/examples/asciidoc/AllStyles.adoc.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/asciidoc/AllStyles.adoc.styled -------------------------------------------------------------------------------- /lexilla/test/examples/asciidoc/SciTE.properties: -------------------------------------------------------------------------------- 1 | code.page=65001 2 | lexer.*.adoc=asciidoc 3 | fold=1 4 | -------------------------------------------------------------------------------- /lexilla/test/examples/bash/SciTE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/bash/SciTE.properties -------------------------------------------------------------------------------- /lexilla/test/examples/bash/x.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/bash/x.bsh -------------------------------------------------------------------------------- /lexilla/test/examples/bash/x.bsh.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/bash/x.bsh.folded -------------------------------------------------------------------------------- /lexilla/test/examples/bash/x.bsh.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/bash/x.bsh.styled -------------------------------------------------------------------------------- /lexilla/test/examples/batch/SciTE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/batch/SciTE.properties -------------------------------------------------------------------------------- /lexilla/test/examples/batch/x.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/batch/x.bat -------------------------------------------------------------------------------- /lexilla/test/examples/batch/x.bat.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/batch/x.bat.folded -------------------------------------------------------------------------------- /lexilla/test/examples/batch/x.bat.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/batch/x.bat.styled -------------------------------------------------------------------------------- /lexilla/test/examples/caml/AllStyles.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/caml/AllStyles.ml -------------------------------------------------------------------------------- /lexilla/test/examples/caml/AllStyles.ml.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/caml/AllStyles.ml.folded -------------------------------------------------------------------------------- /lexilla/test/examples/caml/AllStyles.ml.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/caml/AllStyles.ml.styled -------------------------------------------------------------------------------- /lexilla/test/examples/caml/SciTE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/caml/SciTE.properties -------------------------------------------------------------------------------- /lexilla/test/examples/cpp/Bug2245.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/cpp/Bug2245.cxx -------------------------------------------------------------------------------- /lexilla/test/examples/cpp/Bug2245.cxx.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/cpp/Bug2245.cxx.folded -------------------------------------------------------------------------------- /lexilla/test/examples/cpp/Bug2245.cxx.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/cpp/Bug2245.cxx.styled -------------------------------------------------------------------------------- /lexilla/test/examples/cpp/SciTE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/cpp/SciTE.properties -------------------------------------------------------------------------------- /lexilla/test/examples/cpp/x.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/cpp/x.cxx -------------------------------------------------------------------------------- /lexilla/test/examples/cpp/x.cxx.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/cpp/x.cxx.folded -------------------------------------------------------------------------------- /lexilla/test/examples/cpp/x.cxx.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/cpp/x.cxx.styled -------------------------------------------------------------------------------- /lexilla/test/examples/css/AllStyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/css/AllStyles.css -------------------------------------------------------------------------------- /lexilla/test/examples/css/AllStyles.css.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/css/AllStyles.css.folded -------------------------------------------------------------------------------- /lexilla/test/examples/css/AllStyles.css.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/css/AllStyles.css.styled -------------------------------------------------------------------------------- /lexilla/test/examples/css/SciTE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/css/SciTE.properties -------------------------------------------------------------------------------- /lexilla/test/examples/d/SciTE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/d/SciTE.properties -------------------------------------------------------------------------------- /lexilla/test/examples/d/x.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/d/x.d -------------------------------------------------------------------------------- /lexilla/test/examples/d/x.d.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/d/x.d.folded -------------------------------------------------------------------------------- /lexilla/test/examples/d/x.d.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/d/x.d.styled -------------------------------------------------------------------------------- /lexilla/test/examples/erlang/AllStyles.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/erlang/AllStyles.erl -------------------------------------------------------------------------------- /lexilla/test/examples/erlang/AllStyles.erl.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/erlang/AllStyles.erl.folded -------------------------------------------------------------------------------- /lexilla/test/examples/erlang/AllStyles.erl.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/erlang/AllStyles.erl.styled -------------------------------------------------------------------------------- /lexilla/test/examples/erlang/SciTE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/erlang/SciTE.properties -------------------------------------------------------------------------------- /lexilla/test/examples/errorlist/AllStyles.err: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/errorlist/AllStyles.err -------------------------------------------------------------------------------- /lexilla/test/examples/errorlist/AllStyles.err.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/errorlist/AllStyles.err.folded -------------------------------------------------------------------------------- /lexilla/test/examples/errorlist/AllStyles.err.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/errorlist/AllStyles.err.styled -------------------------------------------------------------------------------- /lexilla/test/examples/errorlist/SciTE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/errorlist/SciTE.properties -------------------------------------------------------------------------------- /lexilla/test/examples/fsharp/FmtSpecs.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/fsharp/FmtSpecs.fs -------------------------------------------------------------------------------- /lexilla/test/examples/fsharp/FmtSpecs.fs.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/fsharp/FmtSpecs.fs.folded -------------------------------------------------------------------------------- /lexilla/test/examples/fsharp/FmtSpecs.fs.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/fsharp/FmtSpecs.fs.styled -------------------------------------------------------------------------------- /lexilla/test/examples/fsharp/Issue56.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/fsharp/Issue56.fs -------------------------------------------------------------------------------- /lexilla/test/examples/fsharp/Issue56.fs.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/fsharp/Issue56.fs.folded -------------------------------------------------------------------------------- /lexilla/test/examples/fsharp/Issue56.fs.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/fsharp/Issue56.fs.styled -------------------------------------------------------------------------------- /lexilla/test/examples/fsharp/SciTE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/fsharp/SciTE.properties -------------------------------------------------------------------------------- /lexilla/test/examples/fsharp/x.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/fsharp/x.fs -------------------------------------------------------------------------------- /lexilla/test/examples/fsharp/x.fs.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/fsharp/x.fs.folded -------------------------------------------------------------------------------- /lexilla/test/examples/fsharp/x.fs.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/fsharp/x.fs.styled -------------------------------------------------------------------------------- /lexilla/test/examples/gdscript/AllStyles.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/gdscript/AllStyles.gd -------------------------------------------------------------------------------- /lexilla/test/examples/gdscript/AllStyles.gd.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/gdscript/AllStyles.gd.folded -------------------------------------------------------------------------------- /lexilla/test/examples/gdscript/AllStyles.gd.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/gdscript/AllStyles.gd.styled -------------------------------------------------------------------------------- /lexilla/test/examples/gdscript/SciTE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/gdscript/SciTE.properties -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/Bug2207.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/hypertext/Bug2207.html -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/Bug2207.html.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/hypertext/Bug2207.html.folded -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/Bug2207.html.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/hypertext/Bug2207.html.styled -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/Issue19.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/hypertext/Issue19.php -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/Issue19.php.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/hypertext/Issue19.php.folded -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/Issue19.php.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/hypertext/Issue19.php.styled -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/Issue20Numbers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/hypertext/Issue20Numbers.php -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/Issue20Numbers.php.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/hypertext/Issue20Numbers.php.folded -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/Issue20Numbers.php.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/hypertext/Issue20Numbers.php.styled -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/Issue47.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/hypertext/Issue47.html -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/Issue47.html.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/hypertext/Issue47.html.folded -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/Issue47.html.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/hypertext/Issue47.html.styled -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/Issue53.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/hypertext/Issue53.html -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/Issue53.html.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/hypertext/Issue53.html.folded -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/Issue53.html.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/hypertext/Issue53.html.styled -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/SciTE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/hypertext/SciTE.properties -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/apostophe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/hypertext/apostophe.php -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/apostophe.php.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/hypertext/apostophe.php.folded -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/apostophe.php.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/hypertext/apostophe.php.styled -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/x.asp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/hypertext/x.asp -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/x.asp.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/hypertext/x.asp.folded -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/x.asp.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/hypertext/x.asp.styled -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/x.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/hypertext/x.html -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/x.html.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/hypertext/x.html.folded -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/x.html.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/hypertext/x.html.styled -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/x.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/hypertext/x.php -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/x.php.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/hypertext/x.php.folded -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/x.php.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/hypertext/x.php.styled -------------------------------------------------------------------------------- /lexilla/test/examples/inno/SciTE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/inno/SciTE.properties -------------------------------------------------------------------------------- /lexilla/test/examples/inno/x.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/inno/x.iss -------------------------------------------------------------------------------- /lexilla/test/examples/inno/x.iss.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/inno/x.iss.folded -------------------------------------------------------------------------------- /lexilla/test/examples/inno/x.iss.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/inno/x.iss.styled -------------------------------------------------------------------------------- /lexilla/test/examples/julia/SciTE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/julia/SciTE.properties -------------------------------------------------------------------------------- /lexilla/test/examples/julia/x.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/julia/x.jl -------------------------------------------------------------------------------- /lexilla/test/examples/julia/x.jl.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/julia/x.jl.folded -------------------------------------------------------------------------------- /lexilla/test/examples/julia/x.jl.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/julia/x.jl.styled -------------------------------------------------------------------------------- /lexilla/test/examples/latex/AllStyles.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/latex/AllStyles.tex -------------------------------------------------------------------------------- /lexilla/test/examples/latex/AllStyles.tex.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/latex/AllStyles.tex.folded -------------------------------------------------------------------------------- /lexilla/test/examples/latex/AllStyles.tex.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/latex/AllStyles.tex.styled -------------------------------------------------------------------------------- /lexilla/test/examples/latex/Feature1358.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/latex/Feature1358.tex -------------------------------------------------------------------------------- /lexilla/test/examples/latex/Feature1358.tex.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/latex/Feature1358.tex.folded -------------------------------------------------------------------------------- /lexilla/test/examples/latex/Feature1358.tex.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/latex/Feature1358.tex.styled -------------------------------------------------------------------------------- /lexilla/test/examples/latex/SciTE.properties: -------------------------------------------------------------------------------- 1 | lexer.*.tex=latex 2 | -------------------------------------------------------------------------------- /lexilla/test/examples/lua/Bug2205.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/lua/Bug2205.lua -------------------------------------------------------------------------------- /lexilla/test/examples/lua/Bug2205.lua.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/lua/Bug2205.lua.folded -------------------------------------------------------------------------------- /lexilla/test/examples/lua/Bug2205.lua.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/lua/Bug2205.lua.styled -------------------------------------------------------------------------------- /lexilla/test/examples/lua/SciTE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/lua/SciTE.properties -------------------------------------------------------------------------------- /lexilla/test/examples/lua/x.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/lua/x.lua -------------------------------------------------------------------------------- /lexilla/test/examples/lua/x.lua.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/lua/x.lua.folded -------------------------------------------------------------------------------- /lexilla/test/examples/lua/x.lua.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/lua/x.lua.styled -------------------------------------------------------------------------------- /lexilla/test/examples/makefile/SciTE.properties: -------------------------------------------------------------------------------- 1 | lexer.*.mak=makefile 2 | -------------------------------------------------------------------------------- /lexilla/test/examples/makefile/x.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/makefile/x.mak -------------------------------------------------------------------------------- /lexilla/test/examples/makefile/x.mak.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/makefile/x.mak.folded -------------------------------------------------------------------------------- /lexilla/test/examples/makefile/x.mak.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/makefile/x.mak.styled -------------------------------------------------------------------------------- /lexilla/test/examples/markdown/AllStyles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/markdown/AllStyles.md -------------------------------------------------------------------------------- /lexilla/test/examples/markdown/AllStyles.md.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/markdown/AllStyles.md.folded -------------------------------------------------------------------------------- /lexilla/test/examples/markdown/AllStyles.md.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/markdown/AllStyles.md.styled -------------------------------------------------------------------------------- /lexilla/test/examples/markdown/Bug1216.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/markdown/Bug1216.md -------------------------------------------------------------------------------- /lexilla/test/examples/markdown/Bug1216.md.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/markdown/Bug1216.md.folded -------------------------------------------------------------------------------- /lexilla/test/examples/markdown/Bug1216.md.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/markdown/Bug1216.md.styled -------------------------------------------------------------------------------- /lexilla/test/examples/markdown/Bug2235.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/markdown/Bug2235.md -------------------------------------------------------------------------------- /lexilla/test/examples/markdown/Bug2235.md.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/markdown/Bug2235.md.folded -------------------------------------------------------------------------------- /lexilla/test/examples/markdown/Bug2235.md.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/markdown/Bug2235.md.styled -------------------------------------------------------------------------------- /lexilla/test/examples/markdown/Bug2247.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/markdown/Bug2247.md -------------------------------------------------------------------------------- /lexilla/test/examples/markdown/Bug2247.md.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/markdown/Bug2247.md.folded -------------------------------------------------------------------------------- /lexilla/test/examples/markdown/Bug2247.md.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/markdown/Bug2247.md.styled -------------------------------------------------------------------------------- /lexilla/test/examples/markdown/SciTE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/markdown/SciTE.properties -------------------------------------------------------------------------------- /lexilla/test/examples/matlab/AllStyles.m.matlab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/matlab/AllStyles.m.matlab -------------------------------------------------------------------------------- /lexilla/test/examples/matlab/AllStyles.m.matlab.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/matlab/AllStyles.m.matlab.folded -------------------------------------------------------------------------------- /lexilla/test/examples/matlab/AllStyles.m.matlab.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/matlab/AllStyles.m.matlab.styled -------------------------------------------------------------------------------- /lexilla/test/examples/matlab/AllStyles.m.octave: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/matlab/AllStyles.m.octave -------------------------------------------------------------------------------- /lexilla/test/examples/matlab/AllStyles.m.octave.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/matlab/AllStyles.m.octave.folded -------------------------------------------------------------------------------- /lexilla/test/examples/matlab/AllStyles.m.octave.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/matlab/AllStyles.m.octave.styled -------------------------------------------------------------------------------- /lexilla/test/examples/matlab/Issue18_EscapeSequence.m.matlab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/matlab/Issue18_EscapeSequence.m.matlab -------------------------------------------------------------------------------- /lexilla/test/examples/matlab/Issue18_EscapeSequence.m.matlab.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/matlab/Issue18_EscapeSequence.m.matlab.folded -------------------------------------------------------------------------------- /lexilla/test/examples/matlab/Issue18_EscapeSequence.m.matlab.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/matlab/Issue18_EscapeSequence.m.matlab.styled -------------------------------------------------------------------------------- /lexilla/test/examples/matlab/Issue18_EscapeSequence.m.octave: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/matlab/Issue18_EscapeSequence.m.octave -------------------------------------------------------------------------------- /lexilla/test/examples/matlab/Issue18_EscapeSequence.m.octave.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/matlab/Issue18_EscapeSequence.m.octave.folded -------------------------------------------------------------------------------- /lexilla/test/examples/matlab/Issue18_EscapeSequence.m.octave.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/matlab/Issue18_EscapeSequence.m.octave.styled -------------------------------------------------------------------------------- /lexilla/test/examples/matlab/SciTE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/matlab/SciTE.properties -------------------------------------------------------------------------------- /lexilla/test/examples/mmixal/AllStyles.mms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/mmixal/AllStyles.mms -------------------------------------------------------------------------------- /lexilla/test/examples/mmixal/AllStyles.mms.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/mmixal/AllStyles.mms.folded -------------------------------------------------------------------------------- /lexilla/test/examples/mmixal/AllStyles.mms.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/mmixal/AllStyles.mms.styled -------------------------------------------------------------------------------- /lexilla/test/examples/mmixal/SciTE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/mmixal/SciTE.properties -------------------------------------------------------------------------------- /lexilla/test/examples/mmixal/references.mms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/mmixal/references.mms -------------------------------------------------------------------------------- /lexilla/test/examples/mmixal/references.mms.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/mmixal/references.mms.folded -------------------------------------------------------------------------------- /lexilla/test/examples/mmixal/references.mms.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/mmixal/references.mms.styled -------------------------------------------------------------------------------- /lexilla/test/examples/mmixal/x.mms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/mmixal/x.mms -------------------------------------------------------------------------------- /lexilla/test/examples/mmixal/x.mms.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/mmixal/x.mms.folded -------------------------------------------------------------------------------- /lexilla/test/examples/mmixal/x.mms.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/mmixal/x.mms.styled -------------------------------------------------------------------------------- /lexilla/test/examples/nim/SciTE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/nim/SciTE.properties -------------------------------------------------------------------------------- /lexilla/test/examples/nim/x.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/nim/x.nim -------------------------------------------------------------------------------- /lexilla/test/examples/nim/x.nim.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/nim/x.nim.folded -------------------------------------------------------------------------------- /lexilla/test/examples/nim/x.nim.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/nim/x.nim.styled -------------------------------------------------------------------------------- /lexilla/test/examples/perl/SciTE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/perl/SciTE.properties -------------------------------------------------------------------------------- /lexilla/test/examples/perl/perl-test-5220delta.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/perl/perl-test-5220delta.pl -------------------------------------------------------------------------------- /lexilla/test/examples/perl/perl-test-5220delta.pl.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/perl/perl-test-5220delta.pl.folded -------------------------------------------------------------------------------- /lexilla/test/examples/perl/perl-test-5220delta.pl.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/perl/perl-test-5220delta.pl.styled -------------------------------------------------------------------------------- /lexilla/test/examples/perl/perl-test-sub-prototypes.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/perl/perl-test-sub-prototypes.pl -------------------------------------------------------------------------------- /lexilla/test/examples/perl/perl-test-sub-prototypes.pl.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/perl/perl-test-sub-prototypes.pl.folded -------------------------------------------------------------------------------- /lexilla/test/examples/perl/perl-test-sub-prototypes.pl.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/perl/perl-test-sub-prototypes.pl.styled -------------------------------------------------------------------------------- /lexilla/test/examples/perl/x.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/perl/x.pl -------------------------------------------------------------------------------- /lexilla/test/examples/perl/x.pl.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/perl/x.pl.folded -------------------------------------------------------------------------------- /lexilla/test/examples/perl/x.pl.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/perl/x.pl.styled -------------------------------------------------------------------------------- /lexilla/test/examples/python/AllStyles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/python/AllStyles.py -------------------------------------------------------------------------------- /lexilla/test/examples/python/AllStyles.py.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/python/AllStyles.py.folded -------------------------------------------------------------------------------- /lexilla/test/examples/python/AllStyles.py.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/python/AllStyles.py.styled -------------------------------------------------------------------------------- /lexilla/test/examples/python/SciTE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/python/SciTE.properties -------------------------------------------------------------------------------- /lexilla/test/examples/python/attributes/SciTE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/python/attributes/SciTE.properties -------------------------------------------------------------------------------- /lexilla/test/examples/python/attributes/attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/python/attributes/attributes.py -------------------------------------------------------------------------------- /lexilla/test/examples/python/attributes/attributes.py.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/python/attributes/attributes.py.folded -------------------------------------------------------------------------------- /lexilla/test/examples/python/attributes/attributes.py.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/python/attributes/attributes.py.styled -------------------------------------------------------------------------------- /lexilla/test/examples/python/x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/python/x.py -------------------------------------------------------------------------------- /lexilla/test/examples/python/x.py.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/python/x.py.folded -------------------------------------------------------------------------------- /lexilla/test/examples/python/x.py.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/python/x.py.styled -------------------------------------------------------------------------------- /lexilla/test/examples/raku/SciTE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/raku/SciTE.properties -------------------------------------------------------------------------------- /lexilla/test/examples/raku/x.p6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/raku/x.p6 -------------------------------------------------------------------------------- /lexilla/test/examples/raku/x.p6.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/raku/x.p6.folded -------------------------------------------------------------------------------- /lexilla/test/examples/raku/x.p6.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/raku/x.p6.styled -------------------------------------------------------------------------------- /lexilla/test/examples/ruby/SciTE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/ruby/SciTE.properties -------------------------------------------------------------------------------- /lexilla/test/examples/ruby/x.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/ruby/x.rb -------------------------------------------------------------------------------- /lexilla/test/examples/ruby/x.rb.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/ruby/x.rb.folded -------------------------------------------------------------------------------- /lexilla/test/examples/ruby/x.rb.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/ruby/x.rb.styled -------------------------------------------------------------------------------- /lexilla/test/examples/rust/Issue33.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/rust/Issue33.rs -------------------------------------------------------------------------------- /lexilla/test/examples/rust/Issue33.rs.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/rust/Issue33.rs.folded -------------------------------------------------------------------------------- /lexilla/test/examples/rust/Issue33.rs.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/rust/Issue33.rs.styled -------------------------------------------------------------------------------- /lexilla/test/examples/rust/Issue34.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/rust/Issue34.rs -------------------------------------------------------------------------------- /lexilla/test/examples/rust/Issue34.rs.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/rust/Issue34.rs.folded -------------------------------------------------------------------------------- /lexilla/test/examples/rust/Issue34.rs.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/rust/Issue34.rs.styled -------------------------------------------------------------------------------- /lexilla/test/examples/rust/Issue35.rs: -------------------------------------------------------------------------------- 1 | /// GitHub Issue #35 2 | fn main() {} 3 | /* -------------------------------------------------------------------------------- /lexilla/test/examples/rust/Issue35.rs.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/rust/Issue35.rs.folded -------------------------------------------------------------------------------- /lexilla/test/examples/rust/Issue35.rs.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/rust/Issue35.rs.styled -------------------------------------------------------------------------------- /lexilla/test/examples/rust/SciTE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/rust/SciTE.properties -------------------------------------------------------------------------------- /lexilla/test/examples/tcl/SciTE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/tcl/SciTE.properties -------------------------------------------------------------------------------- /lexilla/test/examples/tcl/x.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/tcl/x.tcl -------------------------------------------------------------------------------- /lexilla/test/examples/tcl/x.tcl.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/tcl/x.tcl.folded -------------------------------------------------------------------------------- /lexilla/test/examples/tcl/x.tcl.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/tcl/x.tcl.styled -------------------------------------------------------------------------------- /lexilla/test/examples/vb/SciTE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/vb/SciTE.properties -------------------------------------------------------------------------------- /lexilla/test/examples/vb/x.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/vb/x.vb -------------------------------------------------------------------------------- /lexilla/test/examples/vb/x.vb.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/vb/x.vb.folded -------------------------------------------------------------------------------- /lexilla/test/examples/vb/x.vb.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/vb/x.vb.styled -------------------------------------------------------------------------------- /lexilla/test/examples/x12/SciTE.properties: -------------------------------------------------------------------------------- 1 | lexer.*.x12=x12 2 | fold=1 3 | 4 | -------------------------------------------------------------------------------- /lexilla/test/examples/x12/x.x12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/x12/x.x12 -------------------------------------------------------------------------------- /lexilla/test/examples/x12/x.x12.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/x12/x.x12.folded -------------------------------------------------------------------------------- /lexilla/test/examples/x12/x.x12.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/x12/x.x12.styled -------------------------------------------------------------------------------- /lexilla/test/examples/yaml/SciTE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/yaml/SciTE.properties -------------------------------------------------------------------------------- /lexilla/test/examples/yaml/x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/yaml/x.yaml -------------------------------------------------------------------------------- /lexilla/test/examples/yaml/x.yaml.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/yaml/x.yaml.folded -------------------------------------------------------------------------------- /lexilla/test/examples/yaml/x.yaml.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/examples/yaml/x.yaml.styled -------------------------------------------------------------------------------- /lexilla/test/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/makefile -------------------------------------------------------------------------------- /lexilla/test/testlexers.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/testlexers.mak -------------------------------------------------------------------------------- /lexilla/test/unit/LICENSE_1_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/unit/LICENSE_1_0.txt -------------------------------------------------------------------------------- /lexilla/test/unit/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/unit/README -------------------------------------------------------------------------------- /lexilla/test/unit/Sci.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/unit/Sci.natvis -------------------------------------------------------------------------------- /lexilla/test/unit/SciTE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/unit/SciTE.properties -------------------------------------------------------------------------------- /lexilla/test/unit/UnitTester.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/unit/UnitTester.cxx -------------------------------------------------------------------------------- /lexilla/test/unit/UnitTester.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/unit/UnitTester.vcxproj -------------------------------------------------------------------------------- /lexilla/test/unit/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/unit/catch.hpp -------------------------------------------------------------------------------- /lexilla/test/unit/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/unit/makefile -------------------------------------------------------------------------------- /lexilla/test/unit/test.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/unit/test.mak -------------------------------------------------------------------------------- /lexilla/test/unit/testCharacterSet.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/unit/testCharacterSet.cxx -------------------------------------------------------------------------------- /lexilla/test/unit/testLexerSimple.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/unit/testLexerSimple.cxx -------------------------------------------------------------------------------- /lexilla/test/unit/testPropSetSimple.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/unit/testPropSetSimple.cxx -------------------------------------------------------------------------------- /lexilla/test/unit/testSparseState.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/unit/testSparseState.cxx -------------------------------------------------------------------------------- /lexilla/test/unit/testWordList.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/unit/testWordList.cxx -------------------------------------------------------------------------------- /lexilla/test/unit/unitTest.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/test/unit/unitTest.cxx -------------------------------------------------------------------------------- /lexilla/tgzsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/tgzsrc -------------------------------------------------------------------------------- /lexilla/version.txt: -------------------------------------------------------------------------------- 1 | 516 -------------------------------------------------------------------------------- /lexilla/zipsrc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/lexilla/zipsrc.bat -------------------------------------------------------------------------------- /scintilla/CONTRIBUTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/CONTRIBUTING -------------------------------------------------------------------------------- /scintilla/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/License.txt -------------------------------------------------------------------------------- /scintilla/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/README -------------------------------------------------------------------------------- /scintilla/call/ScintillaCall.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/call/ScintillaCall.cxx -------------------------------------------------------------------------------- /scintilla/cocoa/InfoBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/cocoa/InfoBar.h -------------------------------------------------------------------------------- /scintilla/cocoa/InfoBar.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/cocoa/InfoBar.mm -------------------------------------------------------------------------------- /scintilla/cocoa/InfoBarCommunicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/cocoa/InfoBarCommunicator.h -------------------------------------------------------------------------------- /scintilla/cocoa/PlatCocoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/cocoa/PlatCocoa.h -------------------------------------------------------------------------------- /scintilla/cocoa/PlatCocoa.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/cocoa/PlatCocoa.mm -------------------------------------------------------------------------------- /scintilla/cocoa/QuartzTextLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/cocoa/QuartzTextLayout.h -------------------------------------------------------------------------------- /scintilla/cocoa/QuartzTextStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/cocoa/QuartzTextStyle.h -------------------------------------------------------------------------------- /scintilla/cocoa/QuartzTextStyleAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/cocoa/QuartzTextStyleAttribute.h -------------------------------------------------------------------------------- /scintilla/cocoa/Scintilla/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/cocoa/Scintilla/Info.plist -------------------------------------------------------------------------------- /scintilla/cocoa/Scintilla/Scintilla.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/cocoa/Scintilla/Scintilla.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /scintilla/cocoa/Scintilla/Scintilla.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/cocoa/Scintilla/Scintilla.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /scintilla/cocoa/Scintilla/Scintilla.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/cocoa/Scintilla/Scintilla.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /scintilla/cocoa/Scintilla/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/cocoa/Scintilla/module.modulemap -------------------------------------------------------------------------------- /scintilla/cocoa/ScintillaCocoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/cocoa/ScintillaCocoa.h -------------------------------------------------------------------------------- /scintilla/cocoa/ScintillaCocoa.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/cocoa/ScintillaCocoa.mm -------------------------------------------------------------------------------- /scintilla/cocoa/ScintillaTest/AppController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/cocoa/ScintillaTest/AppController.h -------------------------------------------------------------------------------- /scintilla/cocoa/ScintillaTest/AppController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/cocoa/ScintillaTest/AppController.mm -------------------------------------------------------------------------------- /scintilla/cocoa/ScintillaTest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/cocoa/ScintillaTest/Info.plist -------------------------------------------------------------------------------- /scintilla/cocoa/ScintillaTest/Scintilla-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/cocoa/ScintillaTest/Scintilla-Info.plist -------------------------------------------------------------------------------- /scintilla/cocoa/ScintillaTest/ScintillaTest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/cocoa/ScintillaTest/ScintillaTest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /scintilla/cocoa/ScintillaTest/ScintillaTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/cocoa/ScintillaTest/ScintillaTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /scintilla/cocoa/ScintillaTest/ScintillaTest.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/cocoa/ScintillaTest/ScintillaTest.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /scintilla/cocoa/ScintillaTest/TestData.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/cocoa/ScintillaTest/TestData.sql -------------------------------------------------------------------------------- /scintilla/cocoa/ScintillaTest/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/cocoa/ScintillaTest/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /scintilla/cocoa/ScintillaTest/en.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/cocoa/ScintillaTest/en.lproj/MainMenu.xib -------------------------------------------------------------------------------- /scintilla/cocoa/ScintillaTest/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/cocoa/ScintillaTest/main.m -------------------------------------------------------------------------------- /scintilla/cocoa/ScintillaView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/cocoa/ScintillaView.h -------------------------------------------------------------------------------- /scintilla/cocoa/ScintillaView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/cocoa/ScintillaView.mm -------------------------------------------------------------------------------- /scintilla/cocoa/checkbuildosx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/cocoa/checkbuildosx.sh -------------------------------------------------------------------------------- /scintilla/cocoa/res/info_bar_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/cocoa/res/info_bar_bg.png -------------------------------------------------------------------------------- /scintilla/cocoa/res/info_bar_bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/cocoa/res/info_bar_bg@2x.png -------------------------------------------------------------------------------- /scintilla/cocoa/res/mac_cursor_busy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/cocoa/res/mac_cursor_busy.png -------------------------------------------------------------------------------- /scintilla/cocoa/res/mac_cursor_busy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/cocoa/res/mac_cursor_busy@2x.png -------------------------------------------------------------------------------- /scintilla/cocoa/res/mac_cursor_flipped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/cocoa/res/mac_cursor_flipped.png -------------------------------------------------------------------------------- /scintilla/cocoa/res/mac_cursor_flipped@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/cocoa/res/mac_cursor_flipped@2x.png -------------------------------------------------------------------------------- /scintilla/delbin.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/delbin.bat -------------------------------------------------------------------------------- /scintilla/doc/AddSource.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/doc/AddSource.txt -------------------------------------------------------------------------------- /scintilla/doc/Design.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/doc/Design.html -------------------------------------------------------------------------------- /scintilla/doc/Icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/doc/Icons.html -------------------------------------------------------------------------------- /scintilla/doc/Indicators.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/doc/Indicators.png -------------------------------------------------------------------------------- /scintilla/doc/Lexer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/doc/Lexer.txt -------------------------------------------------------------------------------- /scintilla/doc/Markers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/doc/Markers.png -------------------------------------------------------------------------------- /scintilla/doc/Privacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/doc/Privacy.html -------------------------------------------------------------------------------- /scintilla/doc/SciBreak.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/doc/SciBreak.jpg -------------------------------------------------------------------------------- /scintilla/doc/SciCoding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/doc/SciCoding.html -------------------------------------------------------------------------------- /scintilla/doc/SciRest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/doc/SciRest.jpg -------------------------------------------------------------------------------- /scintilla/doc/SciTEIco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/doc/SciTEIco.png -------------------------------------------------------------------------------- /scintilla/doc/SciWord.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/doc/SciWord.jpg -------------------------------------------------------------------------------- /scintilla/doc/Scintilla5Migration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/doc/Scintilla5Migration.html -------------------------------------------------------------------------------- /scintilla/doc/ScintillaDoc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/doc/ScintillaDoc.html -------------------------------------------------------------------------------- /scintilla/doc/ScintillaDownload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/doc/ScintillaDownload.html -------------------------------------------------------------------------------- /scintilla/doc/ScintillaHistory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/doc/ScintillaHistory.html -------------------------------------------------------------------------------- /scintilla/doc/ScintillaRelated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/doc/ScintillaRelated.html -------------------------------------------------------------------------------- /scintilla/doc/ScintillaToDo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/doc/ScintillaToDo.html -------------------------------------------------------------------------------- /scintilla/doc/ScintillaUsage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/doc/ScintillaUsage.html -------------------------------------------------------------------------------- /scintilla/doc/StadiumVariants.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/doc/StadiumVariants.png -------------------------------------------------------------------------------- /scintilla/doc/Steps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/doc/Steps.html -------------------------------------------------------------------------------- /scintilla/doc/StyleMetadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/doc/StyleMetadata.html -------------------------------------------------------------------------------- /scintilla/doc/annotations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/doc/annotations.png -------------------------------------------------------------------------------- /scintilla/doc/eolannotation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/doc/eolannotation.png -------------------------------------------------------------------------------- /scintilla/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/doc/index.html -------------------------------------------------------------------------------- /scintilla/doc/styledmargin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/doc/styledmargin.png -------------------------------------------------------------------------------- /scintilla/gtk/Converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/gtk/Converter.h -------------------------------------------------------------------------------- /scintilla/gtk/DepGen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/gtk/DepGen.py -------------------------------------------------------------------------------- /scintilla/gtk/PlatGTK.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/gtk/PlatGTK.cxx -------------------------------------------------------------------------------- /scintilla/gtk/ScintillaGTK.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/gtk/ScintillaGTK.cxx -------------------------------------------------------------------------------- /scintilla/gtk/ScintillaGTK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/gtk/ScintillaGTK.h -------------------------------------------------------------------------------- /scintilla/gtk/ScintillaGTKAccessible.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/gtk/ScintillaGTKAccessible.cxx -------------------------------------------------------------------------------- /scintilla/gtk/ScintillaGTKAccessible.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/gtk/ScintillaGTKAccessible.h -------------------------------------------------------------------------------- /scintilla/gtk/Wrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/gtk/Wrappers.h -------------------------------------------------------------------------------- /scintilla/gtk/deps.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/gtk/deps.mak -------------------------------------------------------------------------------- /scintilla/gtk/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/gtk/makefile -------------------------------------------------------------------------------- /scintilla/gtk/scintilla-marshal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/gtk/scintilla-marshal.c -------------------------------------------------------------------------------- /scintilla/gtk/scintilla-marshal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/gtk/scintilla-marshal.h -------------------------------------------------------------------------------- /scintilla/gtk/scintilla-marshal.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/gtk/scintilla-marshal.list -------------------------------------------------------------------------------- /scintilla/include/BoostRegexSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/include/BoostRegexSearch.h -------------------------------------------------------------------------------- /scintilla/include/ILexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/include/ILexer.h -------------------------------------------------------------------------------- /scintilla/include/ILoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/include/ILoader.h -------------------------------------------------------------------------------- /scintilla/include/Sci_Position.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/include/Sci_Position.h -------------------------------------------------------------------------------- /scintilla/include/Scintilla.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/include/Scintilla.h -------------------------------------------------------------------------------- /scintilla/include/Scintilla.iface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/include/Scintilla.iface -------------------------------------------------------------------------------- /scintilla/include/ScintillaCall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/include/ScintillaCall.h -------------------------------------------------------------------------------- /scintilla/include/ScintillaMessages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/include/ScintillaMessages.h -------------------------------------------------------------------------------- /scintilla/include/ScintillaStructures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/include/ScintillaStructures.h -------------------------------------------------------------------------------- /scintilla/include/ScintillaTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/include/ScintillaTypes.h -------------------------------------------------------------------------------- /scintilla/include/ScintillaWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/include/ScintillaWidget.h -------------------------------------------------------------------------------- /scintilla/qt/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/qt/README -------------------------------------------------------------------------------- /scintilla/qt/ScintillaEdit/ScintillaDocument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/qt/ScintillaEdit/ScintillaDocument.cpp -------------------------------------------------------------------------------- /scintilla/qt/ScintillaEdit/ScintillaDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/qt/ScintillaEdit/ScintillaDocument.h -------------------------------------------------------------------------------- /scintilla/qt/ScintillaEdit/ScintillaEdit.cpp.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/qt/ScintillaEdit/ScintillaEdit.cpp.template -------------------------------------------------------------------------------- /scintilla/qt/ScintillaEdit/ScintillaEdit.h.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/qt/ScintillaEdit/ScintillaEdit.h.template -------------------------------------------------------------------------------- /scintilla/qt/ScintillaEdit/ScintillaEdit.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/qt/ScintillaEdit/ScintillaEdit.pro -------------------------------------------------------------------------------- /scintilla/qt/ScintillaEdit/WidgetGen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/qt/ScintillaEdit/WidgetGen.py -------------------------------------------------------------------------------- /scintilla/qt/ScintillaEditBase/Notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/qt/ScintillaEditBase/Notes.txt -------------------------------------------------------------------------------- /scintilla/qt/ScintillaEditBase/PlatQt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/qt/ScintillaEditBase/PlatQt.cpp -------------------------------------------------------------------------------- /scintilla/qt/ScintillaEditBase/PlatQt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/qt/ScintillaEditBase/PlatQt.h -------------------------------------------------------------------------------- /scintilla/qt/ScintillaEditBase/ScintillaEditBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/qt/ScintillaEditBase/ScintillaEditBase.cpp -------------------------------------------------------------------------------- /scintilla/qt/ScintillaEditBase/ScintillaEditBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/qt/ScintillaEditBase/ScintillaEditBase.h -------------------------------------------------------------------------------- /scintilla/qt/ScintillaEditBase/ScintillaEditBase.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/qt/ScintillaEditBase/ScintillaEditBase.pro -------------------------------------------------------------------------------- /scintilla/qt/ScintillaEditBase/ScintillaQt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/qt/ScintillaEditBase/ScintillaQt.cpp -------------------------------------------------------------------------------- /scintilla/qt/ScintillaEditBase/ScintillaQt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/qt/ScintillaEditBase/ScintillaQt.h -------------------------------------------------------------------------------- /scintilla/scripts/CheckMentioned.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/scripts/CheckMentioned.py -------------------------------------------------------------------------------- /scintilla/scripts/Dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/scripts/Dependencies.py -------------------------------------------------------------------------------- /scintilla/scripts/Face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/scripts/Face.py -------------------------------------------------------------------------------- /scintilla/scripts/FileGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/scripts/FileGenerator.py -------------------------------------------------------------------------------- /scintilla/scripts/GenerateCaseConvert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/scripts/GenerateCaseConvert.py -------------------------------------------------------------------------------- /scintilla/scripts/GenerateCharacterCategory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/scripts/GenerateCharacterCategory.py -------------------------------------------------------------------------------- /scintilla/scripts/HFacer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/scripts/HFacer.py -------------------------------------------------------------------------------- /scintilla/scripts/HeaderCheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/scripts/HeaderCheck.py -------------------------------------------------------------------------------- /scintilla/scripts/HeaderOrder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/scripts/HeaderOrder.txt -------------------------------------------------------------------------------- /scintilla/scripts/LexGen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/scripts/LexGen.py -------------------------------------------------------------------------------- /scintilla/scripts/ScintillaAPIFacer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/scripts/ScintillaAPIFacer.py -------------------------------------------------------------------------------- /scintilla/scripts/ScintillaData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/scripts/ScintillaData.py -------------------------------------------------------------------------------- /scintilla/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scintilla/scripts/archive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/scripts/archive.sh -------------------------------------------------------------------------------- /scintilla/src/AutoComplete.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/AutoComplete.cxx -------------------------------------------------------------------------------- /scintilla/src/AutoComplete.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/AutoComplete.h -------------------------------------------------------------------------------- /scintilla/src/CallTip.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/CallTip.cxx -------------------------------------------------------------------------------- /scintilla/src/CallTip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/CallTip.h -------------------------------------------------------------------------------- /scintilla/src/CaseConvert.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/CaseConvert.cxx -------------------------------------------------------------------------------- /scintilla/src/CaseConvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/CaseConvert.h -------------------------------------------------------------------------------- /scintilla/src/CaseFolder.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/CaseFolder.cxx -------------------------------------------------------------------------------- /scintilla/src/CaseFolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/CaseFolder.h -------------------------------------------------------------------------------- /scintilla/src/CellBuffer.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/CellBuffer.cxx -------------------------------------------------------------------------------- /scintilla/src/CellBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/CellBuffer.h -------------------------------------------------------------------------------- /scintilla/src/CharClassify.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/CharClassify.cxx -------------------------------------------------------------------------------- /scintilla/src/CharClassify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/CharClassify.h -------------------------------------------------------------------------------- /scintilla/src/CharacterCategoryMap.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/CharacterCategoryMap.cxx -------------------------------------------------------------------------------- /scintilla/src/CharacterCategoryMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/CharacterCategoryMap.h -------------------------------------------------------------------------------- /scintilla/src/CharacterType.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/CharacterType.cxx -------------------------------------------------------------------------------- /scintilla/src/CharacterType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/CharacterType.h -------------------------------------------------------------------------------- /scintilla/src/ContractionState.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/ContractionState.cxx -------------------------------------------------------------------------------- /scintilla/src/ContractionState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/ContractionState.h -------------------------------------------------------------------------------- /scintilla/src/DBCS.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/DBCS.cxx -------------------------------------------------------------------------------- /scintilla/src/DBCS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/DBCS.h -------------------------------------------------------------------------------- /scintilla/src/Debugging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/Debugging.h -------------------------------------------------------------------------------- /scintilla/src/Decoration.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/Decoration.cxx -------------------------------------------------------------------------------- /scintilla/src/Decoration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/Decoration.h -------------------------------------------------------------------------------- /scintilla/src/Document.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/Document.cxx -------------------------------------------------------------------------------- /scintilla/src/Document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/Document.h -------------------------------------------------------------------------------- /scintilla/src/EditModel.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/EditModel.cxx -------------------------------------------------------------------------------- /scintilla/src/EditModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/EditModel.h -------------------------------------------------------------------------------- /scintilla/src/EditView.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/EditView.cxx -------------------------------------------------------------------------------- /scintilla/src/EditView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/EditView.h -------------------------------------------------------------------------------- /scintilla/src/Editor.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/Editor.cxx -------------------------------------------------------------------------------- /scintilla/src/Editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/Editor.h -------------------------------------------------------------------------------- /scintilla/src/ElapsedPeriod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/ElapsedPeriod.h -------------------------------------------------------------------------------- /scintilla/src/Geometry.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/Geometry.cxx -------------------------------------------------------------------------------- /scintilla/src/Geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/Geometry.h -------------------------------------------------------------------------------- /scintilla/src/Indicator.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/Indicator.cxx -------------------------------------------------------------------------------- /scintilla/src/Indicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/Indicator.h -------------------------------------------------------------------------------- /scintilla/src/KeyMap.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/KeyMap.cxx -------------------------------------------------------------------------------- /scintilla/src/KeyMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/KeyMap.h -------------------------------------------------------------------------------- /scintilla/src/LineMarker.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/LineMarker.cxx -------------------------------------------------------------------------------- /scintilla/src/LineMarker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/LineMarker.h -------------------------------------------------------------------------------- /scintilla/src/MarginView.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/MarginView.cxx -------------------------------------------------------------------------------- /scintilla/src/MarginView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/MarginView.h -------------------------------------------------------------------------------- /scintilla/src/Partitioning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/Partitioning.h -------------------------------------------------------------------------------- /scintilla/src/PerLine.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/PerLine.cxx -------------------------------------------------------------------------------- /scintilla/src/PerLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/PerLine.h -------------------------------------------------------------------------------- /scintilla/src/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/Platform.h -------------------------------------------------------------------------------- /scintilla/src/Position.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/Position.h -------------------------------------------------------------------------------- /scintilla/src/PositionCache.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/PositionCache.cxx -------------------------------------------------------------------------------- /scintilla/src/PositionCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/PositionCache.h -------------------------------------------------------------------------------- /scintilla/src/RESearch.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/RESearch.cxx -------------------------------------------------------------------------------- /scintilla/src/RESearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/RESearch.h -------------------------------------------------------------------------------- /scintilla/src/RunStyles.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/RunStyles.cxx -------------------------------------------------------------------------------- /scintilla/src/RunStyles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/RunStyles.h -------------------------------------------------------------------------------- /scintilla/src/SciTE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/SciTE.properties -------------------------------------------------------------------------------- /scintilla/src/ScintillaBase.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/ScintillaBase.cxx -------------------------------------------------------------------------------- /scintilla/src/ScintillaBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/ScintillaBase.h -------------------------------------------------------------------------------- /scintilla/src/Selection.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/Selection.cxx -------------------------------------------------------------------------------- /scintilla/src/Selection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/Selection.h -------------------------------------------------------------------------------- /scintilla/src/SparseVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/SparseVector.h -------------------------------------------------------------------------------- /scintilla/src/SplitVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/SplitVector.h -------------------------------------------------------------------------------- /scintilla/src/Style.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/Style.cxx -------------------------------------------------------------------------------- /scintilla/src/Style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/Style.h -------------------------------------------------------------------------------- /scintilla/src/UniConversion.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/UniConversion.cxx -------------------------------------------------------------------------------- /scintilla/src/UniConversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/UniConversion.h -------------------------------------------------------------------------------- /scintilla/src/UniqueString.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/UniqueString.cxx -------------------------------------------------------------------------------- /scintilla/src/UniqueString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/UniqueString.h -------------------------------------------------------------------------------- /scintilla/src/ViewStyle.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/ViewStyle.cxx -------------------------------------------------------------------------------- /scintilla/src/ViewStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/ViewStyle.h -------------------------------------------------------------------------------- /scintilla/src/XPM.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/XPM.cxx -------------------------------------------------------------------------------- /scintilla/src/XPM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/src/XPM.h -------------------------------------------------------------------------------- /scintilla/test/MessageNumbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/test/MessageNumbers.py -------------------------------------------------------------------------------- /scintilla/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/test/README -------------------------------------------------------------------------------- /scintilla/test/ScintillaCallable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/test/ScintillaCallable.py -------------------------------------------------------------------------------- /scintilla/test/XiteMenu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/test/XiteMenu.py -------------------------------------------------------------------------------- /scintilla/test/XiteWin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/test/XiteWin.py -------------------------------------------------------------------------------- /scintilla/test/gi/Scintilla-0.1.gir.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/test/gi/Scintilla-0.1.gir.good -------------------------------------------------------------------------------- /scintilla/test/gi/filter-scintilla-h.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/test/gi/filter-scintilla-h.py -------------------------------------------------------------------------------- /scintilla/test/gi/gi-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/test/gi/gi-test.py -------------------------------------------------------------------------------- /scintilla/test/gi/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/test/gi/makefile -------------------------------------------------------------------------------- /scintilla/test/performanceTests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/test/performanceTests.py -------------------------------------------------------------------------------- /scintilla/test/simpleTests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/test/simpleTests.py -------------------------------------------------------------------------------- /scintilla/test/unit/LICENSE_1_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/test/unit/LICENSE_1_0.txt -------------------------------------------------------------------------------- /scintilla/test/unit/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/test/unit/README -------------------------------------------------------------------------------- /scintilla/test/unit/Sci.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/test/unit/Sci.natvis -------------------------------------------------------------------------------- /scintilla/test/unit/SciTE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/test/unit/SciTE.properties -------------------------------------------------------------------------------- /scintilla/test/unit/UnitTester.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/test/unit/UnitTester.cxx -------------------------------------------------------------------------------- /scintilla/test/unit/UnitTester.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/test/unit/UnitTester.vcxproj -------------------------------------------------------------------------------- /scintilla/test/unit/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/test/unit/catch.hpp -------------------------------------------------------------------------------- /scintilla/test/unit/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/test/unit/makefile -------------------------------------------------------------------------------- /scintilla/test/unit/test.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/test/unit/test.mak -------------------------------------------------------------------------------- /scintilla/test/unit/testCellBuffer.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/test/unit/testCellBuffer.cxx -------------------------------------------------------------------------------- /scintilla/test/unit/testCharClassify.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/test/unit/testCharClassify.cxx -------------------------------------------------------------------------------- /scintilla/test/unit/testCharacterCategoryMap.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/test/unit/testCharacterCategoryMap.cxx -------------------------------------------------------------------------------- /scintilla/test/unit/testContractionState.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/test/unit/testContractionState.cxx -------------------------------------------------------------------------------- /scintilla/test/unit/testDecoration.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/test/unit/testDecoration.cxx -------------------------------------------------------------------------------- /scintilla/test/unit/testDocument.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/test/unit/testDocument.cxx -------------------------------------------------------------------------------- /scintilla/test/unit/testGeometry.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/test/unit/testGeometry.cxx -------------------------------------------------------------------------------- /scintilla/test/unit/testPartitioning.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/test/unit/testPartitioning.cxx -------------------------------------------------------------------------------- /scintilla/test/unit/testPerLine.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/test/unit/testPerLine.cxx -------------------------------------------------------------------------------- /scintilla/test/unit/testRESearch.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/test/unit/testRESearch.cxx -------------------------------------------------------------------------------- /scintilla/test/unit/testRunStyles.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/test/unit/testRunStyles.cxx -------------------------------------------------------------------------------- /scintilla/test/unit/testSparseVector.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/test/unit/testSparseVector.cxx -------------------------------------------------------------------------------- /scintilla/test/unit/testSplitVector.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/test/unit/testSplitVector.cxx -------------------------------------------------------------------------------- /scintilla/test/unit/testUniConversion.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/test/unit/testUniConversion.cxx -------------------------------------------------------------------------------- /scintilla/test/unit/unitTest.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/test/unit/unitTest.cxx -------------------------------------------------------------------------------- /scintilla/test/win32Tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/test/win32Tests.py -------------------------------------------------------------------------------- /scintilla/test/xite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/test/xite.py -------------------------------------------------------------------------------- /scintilla/tgzsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/tgzsrc -------------------------------------------------------------------------------- /scintilla/version.txt: -------------------------------------------------------------------------------- 1 | 522 2 | -------------------------------------------------------------------------------- /scintilla/win32/DepGen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/win32/DepGen.py -------------------------------------------------------------------------------- /scintilla/win32/HanjaDic.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/win32/HanjaDic.cxx -------------------------------------------------------------------------------- /scintilla/win32/HanjaDic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/win32/HanjaDic.h -------------------------------------------------------------------------------- /scintilla/win32/PlatWin.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/win32/PlatWin.cxx -------------------------------------------------------------------------------- /scintilla/win32/PlatWin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/win32/PlatWin.h -------------------------------------------------------------------------------- /scintilla/win32/SciTE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/win32/SciTE.properties -------------------------------------------------------------------------------- /scintilla/win32/ScintRes.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/win32/ScintRes.aps -------------------------------------------------------------------------------- /scintilla/win32/ScintRes.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/win32/ScintRes.rc -------------------------------------------------------------------------------- /scintilla/win32/Scintilla.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | Scintilla_DirectFunction -------------------------------------------------------------------------------- /scintilla/win32/Scintilla.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/win32/Scintilla.vcxproj -------------------------------------------------------------------------------- /scintilla/win32/Scintilla.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/win32/Scintilla.vcxproj.user -------------------------------------------------------------------------------- /scintilla/win32/ScintillaDLL.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/win32/ScintillaDLL.cxx -------------------------------------------------------------------------------- /scintilla/win32/ScintillaWin.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/win32/ScintillaWin.cxx -------------------------------------------------------------------------------- /scintilla/win32/ScintillaWin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/win32/ScintillaWin.h -------------------------------------------------------------------------------- /scintilla/win32/WinTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/win32/WinTypes.h -------------------------------------------------------------------------------- /scintilla/win32/deps.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/win32/deps.mak -------------------------------------------------------------------------------- /scintilla/win32/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/win32/makefile -------------------------------------------------------------------------------- /scintilla/win32/nmdeps.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/win32/nmdeps.mak -------------------------------------------------------------------------------- /scintilla/win32/scintilla.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/win32/scintilla.mak -------------------------------------------------------------------------------- /scintilla/zipsrc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/InfStudio/HEAD/scintilla/zipsrc.bat --------------------------------------------------------------------------------