├── .github
└── FUNDING.yml
├── .gitignore
├── Base64Dlg.cpp
├── Base64Dlg.h
├── CODE_OF_CONDUCT.md
├── CONTRIBUTING.md
├── ChangeDriveDlg.cpp
├── ChangeDriveDlg.h
├── CheckForUpdatesDlg.cpp
├── CheckForUpdatesDlg.h
├── EdgeWebBrowser.cpp
├── EdgeWebBrowser.h
├── FileList.cpp
├── FileList.h
├── FileView.cpp
├── FileView.h
├── FilteredFolderDlg.cpp
├── FilteredFolderDlg.h
├── FolderDlg.cpp
├── FolderDlg.h
├── HLinkCtrl.cpp
├── HLinkCtrl.h
├── HexCtrl
├── .clang-tidy
├── .editorconfig
├── .gitattributes
├── .gitignore
├── CONTRIBUTING.md
├── HexCtrl
│ ├── HexCtrl.h
│ ├── dep
│ │ ├── ListEx
│ │ │ └── ListEx.ixx
│ │ ├── StrToNum
│ │ │ └── StrToNum.ixx
│ │ └── rapidjson
│ │ │ └── rapidjson-amalgam.h
│ ├── res
│ │ ├── HexCtrl.rc
│ │ ├── HexCtrlRes.h
│ │ ├── IDB_HEXCTRL_BKMS.bmp
│ │ ├── IDB_HEXCTRL_CLPBRD_COPYHEX.bmp
│ │ ├── IDB_HEXCTRL_CLPBRD_PASTEHEX.bmp
│ │ ├── IDB_HEXCTRL_FONTCHOOSE.bmp
│ │ ├── IDB_HEXCTRL_GROUP.bmp
│ │ ├── IDB_HEXCTRL_LOGO.bmp
│ │ ├── IDB_HEXCTRL_MODIFY.bmp
│ │ ├── IDB_HEXCTRL_MODIFY_FILLZEROS.bmp
│ │ ├── IDB_HEXCTRL_SEARCH.bmp
│ │ └── IDJ_HEXCTRL_KEYBIND.json
│ └── src
│ │ ├── CHexCtrl.ixx
│ │ ├── CHexScroll.ixx
│ │ ├── CHexSelection.ixx
│ │ ├── Dialogs
│ │ ├── CHexDlgBkmMgr.ixx
│ │ ├── CHexDlgCodepage.ixx
│ │ ├── CHexDlgDataInterp.ixx
│ │ ├── CHexDlgGoTo.ixx
│ │ ├── CHexDlgModify.ixx
│ │ ├── CHexDlgProgress.ixx
│ │ ├── CHexDlgSearch.ixx
│ │ └── CHexDlgTemplMgr.ixx
│ │ └── HexUtility.ixx
├── LICENSE
├── README.md
├── Templates
│ ├── BITMAPFILEHEADER.json
│ ├── IMAGE_DOS_HEADER.json
│ ├── IMAGE_NT_HEADERS32.json
│ ├── IMAGE_NT_HEADERS64.json
│ └── SampleTemplate.json
├── VS Projects
│ ├── HexCtrl DLL
│ │ ├── HexCtrl DLL.vcxproj
│ │ └── HexCtrl DLL.vcxproj.filters
│ ├── HexCtrl Test
│ │ ├── CHexCtrlInit.h
│ │ ├── CModifyADD.cpp
│ │ ├── CModifyAND.cpp
│ │ ├── CModifyBITREV.cpp
│ │ ├── CModifyDIV.cpp
│ │ ├── CModifyMAX.cpp
│ │ ├── CModifyMIN.cpp
│ │ ├── CModifyMUL.cpp
│ │ ├── CModifyNOT.cpp
│ │ ├── CModifyOR.cpp
│ │ ├── CModifyROTL.cpp
│ │ ├── CModifyROTR.cpp
│ │ ├── CModifySHL.cpp
│ │ ├── CModifySHR.cpp
│ │ ├── CModifySUB.cpp
│ │ ├── CModifySWAP.cpp
│ │ ├── CModifyXOR.cpp
│ │ ├── HexCtrl Test.vcxproj
│ │ └── HexCtrl Test.vcxproj.filters
│ ├── HexCtrl.sln
│ ├── MFC Dialog DLL
│ │ ├── CMFCDialogDLLApp.cpp
│ │ ├── CMFCDialogDLLApp.h
│ │ ├── CMFCDialogDLLDlg.cpp
│ │ ├── CMFCDialogDLLDlg.h
│ │ ├── MFC Dialog DLL.vcxproj
│ │ ├── MFC Dialog DLL.vcxproj.filters
│ │ ├── MFCDialogDLL.rc
│ │ ├── Resource.h
│ │ ├── res
│ │ │ ├── MFCDialogDLL.ico
│ │ │ └── MFCDialogDLL.rc2
│ │ ├── stdafx.cpp
│ │ ├── stdafx.h
│ │ └── targetver.h
│ ├── MFC Dialog
│ │ ├── CMFCDialogApp.cpp
│ │ ├── CMFCDialogApp.h
│ │ ├── CMFCDialogDlg.cpp
│ │ ├── CMFCDialogDlg.h
│ │ ├── MFC Dialog.vcxproj
│ │ ├── MFC Dialog.vcxproj.filters
│ │ ├── MFCDialog.rc
│ │ ├── Resource.h
│ │ ├── res
│ │ │ ├── MFCDialog.ico
│ │ │ └── MFCDialog.rc2
│ │ ├── stdafx.cpp
│ │ ├── stdafx.h
│ │ └── targetver.h
│ └── Win32 App
│ │ ├── Resource.h
│ │ ├── Win32 App.cpp
│ │ ├── Win32 App.h
│ │ ├── Win32 App.ico
│ │ ├── Win32 App.rc
│ │ ├── Win32 App.vcxproj
│ │ ├── Win32 App.vcxproj.filters
│ │ ├── framework.h
│ │ ├── small.ico
│ │ ├── stdafx.cpp
│ │ ├── stdafx.h
│ │ └── targetver.h
└── docs
│ ├── HexCtrl.Templates.Schema.json
│ └── img
│ ├── HexCtrl_Main.jpg
│ ├── HexCtrl_Operations.jpg
│ ├── HexCtrl_Templates.jpg
│ ├── HexCtrl_VSCustomCtrl.jpg
│ └── HexCtrl_VSToolbox.jpg
├── Icon.cpp
├── Icon.h
├── ImageCtrl.cpp
├── ImageCtrl.h
├── IntelliFile.cpp
├── IntelliFile.h
├── IntelliFile.html
├── IntelliFile.png
├── IntelliFile.rc
├── IntelliFile.sln
├── IntelliFile.vcxproj
├── IntelliFile.vcxproj.filters
├── LICENSE
├── MFCListView.cpp
├── MFCListView.h
├── MainFrame.cpp
├── MainFrame.h
├── Messages.h
├── NewFolderDlg.cpp
├── NewFolderDlg.h
├── QuickAccessDlg.cpp
├── QuickAccessDlg.h
├── README.md
├── ReadMe.txt
├── ReleaseNotes.html
├── ScintillaCtrl.cpp
├── ScintillaCtrl.h
├── SearchFileDlg.cpp
├── SearchFileDlg.h
├── SelectFileDlg.cpp
├── SelectFileDlg.h
├── Setup
└── Setup.vdproj
├── SoftwareContextRegister.html
├── SortListCtrl.cpp
├── SortListCtrl.h
├── VersionInfo.cpp
├── VersionInfo.h
├── ViewAudioFileDlg.cpp
├── ViewAudioFileDlg.h
├── ViewBinaryFileDlg.cpp
├── ViewBinaryFileDlg.h
├── ViewImageFileDlg.cpp
├── ViewImageFileDlg.h
├── ViewRichFileDlg.cpp
├── ViewRichFileDlg.h
├── ViewTextFileDlg.cpp
├── ViewTextFileDlg.h
├── WebBrowserDlg.cpp
├── WebBrowserDlg.h
├── WndResizer.cpp
├── WndResizer.h
├── _config.yml
├── base64.cpp
├── base64.h
├── genUp4win
├── .gitignore
├── AppSettings.h
├── CODE_OF_CONDUCT.md
├── CONTRIBUTING.md
├── DemoApp
│ ├── DemoApp.cpp
│ ├── DemoApp.h
│ ├── DemoApp.ico
│ ├── DemoApp.rc
│ ├── DemoApp.sln
│ ├── DemoApp.vcxproj
│ ├── DemoApp.vcxproj.filters
│ ├── Resource.h
│ ├── framework.h
│ ├── pch.cpp
│ ├── pch.h
│ ├── small.ico
│ └── targetver.h
├── LICENSE
├── ProductVersion.png
├── README.md
├── VersionInfo.cpp
├── VersionInfo.h
├── dllmain.cpp
├── framework.h
├── genUp4win.cpp
├── genUp4win.h
├── genUp4win.rc
├── genUp4win.sln
├── genUp4win.vcxproj
├── genUp4win.vcxproj.filters
├── pch.cpp
├── pch.h
└── resource.h
├── hlp
├── HTMLDefines.h
├── Images
│ └── Bullet.gif
├── IntelliFile.chm
├── IntelliFile.hhc
├── IntelliFile.hhk
├── IntelliFile.hhp
├── afx_hidd_color.htm
├── afx_hidd_fileopen.htm
├── afx_hidd_filesave.htm
├── afx_hidd_find.htm
├── afx_hidd_font.htm
├── afx_hidd_newtypedlg.htm
├── afx_hidd_replace.htm
├── afx_hidp_default.htm
├── afx_hidw_dockbar_top.htm
├── afx_hidw_status_bar.htm
├── afx_hidw_toolbar.htm
├── hid_app_about.htm
├── hid_app_exit.htm
├── hid_context_help.htm
├── hid_edit_clear.htm
├── hid_edit_clear_all.htm
├── hid_edit_copy.htm
├── hid_edit_cut.htm
├── hid_edit_find.htm
├── hid_edit_paste.htm
├── hid_edit_redo.htm
├── hid_edit_repeat.htm
├── hid_edit_replace.htm
├── hid_edit_undo.htm
├── hid_file_close.htm
├── hid_file_mru_file1.htm
├── hid_file_new.htm
├── hid_file_open.htm
├── hid_file_save.htm
├── hid_file_save_as.htm
├── hid_file_send_mail.htm
├── hid_help_index.htm
├── hid_help_using.htm
├── hid_ht_caption.htm
├── hid_ht_nowhere.htm
├── hid_next_pane.htm
├── hid_prev_pane.htm
├── hid_sc_close.htm
├── hid_sc_maximize.htm
├── hid_sc_minimize.htm
├── hid_sc_move.htm
├── hid_sc_nextwindow.htm
├── hid_sc_prevwindow.htm
├── hid_sc_restore.htm
├── hid_sc_size.htm
├── hid_sc_tasklist.htm
├── hid_view_ruler.htm
├── hid_view_status_bar.htm
├── hid_view_toolbar.htm
├── hid_window_all.htm
├── hid_window_arrange.htm
├── hid_window_cascade.htm
├── hid_window_new.htm
├── hid_window_split.htm
├── hid_window_tile.htm
├── hid_window_tile_horz.htm
├── hid_window_tile_vert.htm
├── hidr_doc1type.htm
├── main_index.htm
├── menu_edit.htm
├── menu_file.htm
├── menu_help.htm
├── menu_view.htm
├── menu_window.htm
└── scrollbars.htm
├── 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
│ ├── LexDart.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
│ ├── LexNix.cxx
│ ├── LexNsis.cxx
│ ├── LexNull.cxx
│ ├── LexOScript.cxx
│ ├── LexOpal.cxx
│ ├── LexPB.cxx
│ ├── LexPLM.cxx
│ ├── LexPO.cxx
│ ├── LexPOV.cxx
│ ├── LexPS.cxx
│ ├── LexPascal.cxx
│ ├── LexPerl.cxx
│ ├── LexPowerPro.cxx
│ ├── LexPowerShell.cxx
│ ├── LexProgress.cxx
│ ├── LexProps.cxx
│ ├── LexPython.cxx
│ ├── LexR.cxx
│ ├── LexRaku.cxx
│ ├── LexRebol.cxx
│ ├── LexRegistry.cxx
│ ├── LexRuby.cxx
│ ├── LexRust.cxx
│ ├── LexSAS.cxx
│ ├── LexSML.cxx
│ ├── LexSQL.cxx
│ ├── LexSTTXT.cxx
│ ├── LexScriptol.cxx
│ ├── LexSmalltalk.cxx
│ ├── LexSorcus.cxx
│ ├── LexSpecman.cxx
│ ├── LexSpice.cxx
│ ├── LexStata.cxx
│ ├── LexTACL.cxx
│ ├── LexTADS3.cxx
│ ├── LexTAL.cxx
│ ├── LexTCL.cxx
│ ├── LexTCMD.cxx
│ ├── LexTOML.cxx
│ ├── LexTeX.cxx
│ ├── LexTroff.cxx
│ ├── LexTxt2tags.cxx
│ ├── LexVB.cxx
│ ├── LexVHDL.cxx
│ ├── LexVerilog.cxx
│ ├── LexVisualProlog.cxx
│ ├── LexX12.cxx
│ ├── LexYAML.cxx
│ └── LexZig.cxx
├── lexlib
│ ├── Accessor.cxx
│ ├── Accessor.h
│ ├── CatalogueModules.h
│ ├── CharacterCategory.cxx
│ ├── CharacterCategory.h
│ ├── CharacterSet.cxx
│ ├── CharacterSet.h
│ ├── DefaultLexer.cxx
│ ├── DefaultLexer.h
│ ├── InList.cxx
│ ├── InList.h
│ ├── LexAccessor.cxx
│ ├── LexAccessor.h
│ ├── LexerBase.cxx
│ ├── LexerBase.h
│ ├── LexerModule.cxx
│ ├── LexerModule.h
│ ├── LexerSimple.cxx
│ ├── LexerSimple.h
│ ├── OptionSet.h
│ ├── PropSetSimple.cxx
│ ├── PropSetSimple.h
│ ├── SparseState.h
│ ├── StringCopy.h
│ ├── StyleContext.cxx
│ ├── StyleContext.h
│ ├── SubStyles.h
│ ├── WordList.cxx
│ └── WordList.h
├── scripts
│ ├── HeaderOrder.txt
│ ├── LexFacer.py
│ ├── LexillaData.py
│ ├── LexillaGen.py
│ ├── LexillaLogo.py
│ ├── PromoteNew.bat
│ ├── RunTest.bat
│ └── RunTest.sh
├── src
│ ├── DepGen.py
│ ├── Lexilla.cxx
│ ├── Lexilla.def
│ ├── Lexilla.pro
│ ├── Lexilla.ruleset
│ ├── 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
│ │ ├── asm
│ │ │ ├── AllStyles.asm
│ │ │ ├── AllStyles.asm.folded
│ │ │ ├── AllStyles.asm.styled
│ │ │ └── SciTE.properties
│ │ ├── bash
│ │ │ ├── 197ArithmeticOperator.bsh
│ │ │ ├── 197ArithmeticOperator.bsh.folded
│ │ │ ├── 197ArithmeticOperator.bsh.styled
│ │ │ ├── 199Numbers.bsh
│ │ │ ├── 199Numbers.bsh.folded
│ │ │ ├── 199Numbers.bsh.styled
│ │ │ ├── 202LineStartOption.bsh
│ │ │ ├── 202LineStartOption.bsh.folded
│ │ │ ├── 202LineStartOption.bsh.styled
│ │ │ ├── 203TestOption.bsh
│ │ │ ├── 203TestOption.bsh.folded
│ │ │ ├── 203TestOption.bsh.styled
│ │ │ ├── 257Delimiter.bsh
│ │ │ ├── 257Delimiter.bsh.folded
│ │ │ ├── 257Delimiter.bsh.styled
│ │ │ ├── AllStyles.bsh
│ │ │ ├── AllStyles.bsh.folded
│ │ │ ├── AllStyles.bsh.styled
│ │ │ ├── Issue180.bsh
│ │ │ ├── Issue180.bsh.folded
│ │ │ ├── Issue180.bsh.styled
│ │ │ ├── Issue182.bsh
│ │ │ ├── Issue182.bsh.folded
│ │ │ ├── Issue182.bsh.styled
│ │ │ ├── Issue184.bsh
│ │ │ ├── Issue184.bsh.folded
│ │ │ ├── Issue184.bsh.styled
│ │ │ ├── Issue184Copy.bsh
│ │ │ ├── Issue184Copy.bsh.folded
│ │ │ ├── Issue184Copy.bsh.styled
│ │ │ ├── Nested.bsh
│ │ │ ├── Nested.bsh.folded
│ │ │ ├── Nested.bsh.styled
│ │ │ ├── NestedRich.bsh
│ │ │ ├── NestedRich.bsh.folded
│ │ │ ├── NestedRich.bsh.styled
│ │ │ ├── NestedStyledInside.bsh
│ │ │ ├── NestedStyledInside.bsh.folded
│ │ │ ├── NestedStyledInside.bsh.styled
│ │ │ ├── SciTE.properties
│ │ │ ├── continuation.bsh
│ │ │ ├── continuation.bsh.folded
│ │ │ ├── continuation.bsh.styled
│ │ │ ├── hash.zsh
│ │ │ ├── hash.zsh.folded
│ │ │ ├── hash.zsh.styled
│ │ │ ├── x.bsh
│ │ │ ├── x.bsh.folded
│ │ │ └── x.bsh.styled
│ │ ├── batch
│ │ │ ├── Issue115.bat
│ │ │ ├── Issue115.bat.folded
│ │ │ ├── Issue115.bat.styled
│ │ │ ├── Issue222.bat
│ │ │ ├── Issue222.bat.folded
│ │ │ ├── Issue222.bat.styled
│ │ │ ├── SciTE.properties
│ │ │ ├── x.bat
│ │ │ ├── x.bat.folded
│ │ │ └── x.bat.styled
│ │ ├── caml
│ │ │ ├── AllStyles.ml
│ │ │ ├── AllStyles.ml.folded
│ │ │ ├── AllStyles.ml.styled
│ │ │ └── SciTE.properties
│ │ ├── cmake
│ │ │ ├── Bug77_0.cmake
│ │ │ ├── Bug77_0.cmake.folded
│ │ │ ├── Bug77_0.cmake.styled
│ │ │ ├── Bug77_1.cmake
│ │ │ ├── Bug77_1.cmake.folded
│ │ │ ├── Bug77_1.cmake.styled
│ │ │ └── SciTE.properties
│ │ ├── cobol
│ │ │ ├── 229.cob
│ │ │ ├── 229.cob.folded
│ │ │ ├── 229.cob.styled
│ │ │ ├── 230.cob
│ │ │ ├── 230.cob.folded
│ │ │ ├── 230.cob.styled
│ │ │ ├── 231.cob
│ │ │ ├── 231.cob.folded
│ │ │ ├── 231.cob.styled
│ │ │ ├── AllStyles.cob
│ │ │ ├── AllStyles.cob.folded
│ │ │ ├── AllStyles.cob.styled
│ │ │ └── SciTE.properties
│ │ ├── cpp
│ │ │ ├── 130NonAsciiKeyword.cxx
│ │ │ ├── 130NonAsciiKeyword.cxx.folded
│ │ │ ├── 130NonAsciiKeyword.cxx.styled
│ │ │ ├── 149KeywordCase.cxx
│ │ │ ├── 149KeywordCase.cxx.folded
│ │ │ ├── 149KeywordCase.cxx.styled
│ │ │ ├── 94Template.cxx
│ │ │ ├── 94Template.cxx.folded
│ │ │ ├── 94Template.cxx.styled
│ │ │ ├── AllStyles.cxx
│ │ │ ├── AllStyles.cxx.folded
│ │ │ ├── AllStyles.cxx.styled
│ │ │ ├── Bug2245.cxx
│ │ │ ├── Bug2245.cxx.folded
│ │ │ ├── Bug2245.cxx.styled
│ │ │ ├── SciTE.properties
│ │ │ ├── x.cxx
│ │ │ ├── x.cxx.folded
│ │ │ └── x.cxx.styled
│ │ ├── css
│ │ │ ├── AllStyles.css
│ │ │ ├── AllStyles.css.folded
│ │ │ ├── AllStyles.css.styled
│ │ │ └── SciTE.properties
│ │ ├── d
│ │ │ ├── SciTE.properties
│ │ │ ├── x.d
│ │ │ ├── x.d.folded
│ │ │ └── x.d.styled
│ │ ├── dart
│ │ │ ├── AllStyles.dart
│ │ │ ├── AllStyles.dart.folded
│ │ │ ├── AllStyles.dart.styled
│ │ │ └── SciTE.properties
│ │ ├── diff
│ │ │ ├── AllStyles.diff
│ │ │ ├── AllStyles.diff.folded
│ │ │ ├── AllStyles.diff.styled
│ │ │ ├── LongLine.diff
│ │ │ ├── LongLine.diff.folded
│ │ │ ├── LongLine.diff.styled
│ │ │ └── SciTE.properties
│ │ ├── erlang
│ │ │ ├── AllStyles.erl
│ │ │ ├── AllStyles.erl.folded
│ │ │ ├── AllStyles.erl.styled
│ │ │ └── SciTE.properties
│ │ ├── errorlist
│ │ │ ├── AllStyles.err
│ │ │ ├── AllStyles.err.folded
│ │ │ ├── AllStyles.err.styled
│ │ │ └── SciTE.properties
│ │ ├── fortran
│ │ │ ├── AllStyles.f
│ │ │ ├── AllStyles.f.folded
│ │ │ ├── AllStyles.f.styled
│ │ │ └── SciTE.properties
│ │ ├── fsharp
│ │ │ ├── FmtSpecs.fs
│ │ │ ├── FmtSpecs.fs.folded
│ │ │ ├── FmtSpecs.fs.styled
│ │ │ ├── Issue56.fs
│ │ │ ├── Issue56.fs.folded
│ │ │ ├── Issue56.fs.styled
│ │ │ ├── Issue93.fs
│ │ │ ├── Issue93.fs.folded
│ │ │ ├── Issue93.fs.styled
│ │ │ ├── Literals.fs
│ │ │ ├── Literals.fs.folded
│ │ │ ├── Literals.fs.styled
│ │ │ ├── SciTE.properties
│ │ │ ├── x.fs
│ │ │ ├── x.fs.folded
│ │ │ └── x.fs.styled
│ │ ├── gdscript
│ │ │ ├── AllStyles.gd
│ │ │ ├── AllStyles.gd.folded
│ │ │ ├── AllStyles.gd.styled
│ │ │ ├── NodePath.gd
│ │ │ ├── NodePath.gd.folded
│ │ │ ├── NodePath.gd.styled
│ │ │ └── SciTE.properties
│ │ ├── gui4cli
│ │ │ ├── AllStyles.gui
│ │ │ ├── AllStyles.gui.folded
│ │ │ ├── AllStyles.gui.styled
│ │ │ └── SciTE.properties
│ │ ├── hypertext
│ │ │ ├── Bug2207.html
│ │ │ ├── Bug2207.html.folded
│ │ │ ├── Bug2207.html.styled
│ │ │ ├── Bug2219.html
│ │ │ ├── Bug2219.html.folded
│ │ │ ├── Bug2219.html.styled
│ │ │ ├── Issue19.php
│ │ │ ├── Issue19.php.folded
│ │ │ ├── Issue19.php.styled
│ │ │ ├── Issue192.html
│ │ │ ├── Issue192.html.folded
│ │ │ ├── Issue192.html.styled
│ │ │ ├── Issue20Numbers.php
│ │ │ ├── Issue20Numbers.php.folded
│ │ │ ├── Issue20Numbers.php.styled
│ │ │ ├── Issue250RegEx.html
│ │ │ ├── Issue250RegEx.html.folded
│ │ │ ├── Issue250RegEx.html.styled
│ │ │ ├── Issue252Tag.php
│ │ │ ├── Issue252Tag.php.folded
│ │ │ ├── Issue252Tag.php.styled
│ │ │ ├── Issue259CaseLower.html
│ │ │ ├── Issue259CaseLower.html.folded
│ │ │ ├── Issue259CaseLower.html.styled
│ │ │ ├── Issue272SGML.xml
│ │ │ ├── Issue272SGML.xml.folded
│ │ │ ├── Issue272SGML.xml.styled
│ │ │ ├── Issue273JavaScript.html
│ │ │ ├── Issue273JavaScript.html.folded
│ │ │ ├── Issue273JavaScript.html.styled
│ │ │ ├── Issue288.php
│ │ │ ├── Issue288.php.folded
│ │ │ ├── Issue288.php.styled
│ │ │ ├── Issue47.html
│ │ │ ├── Issue47.html.folded
│ │ │ ├── Issue47.html.styled
│ │ │ ├── Issue53.html
│ │ │ ├── Issue53.html.folded
│ │ │ ├── Issue53.html.styled
│ │ │ ├── SciTE.properties
│ │ │ ├── ServerBasic.aspx
│ │ │ ├── ServerBasic.aspx.folded
│ │ │ ├── ServerBasic.aspx.styled
│ │ │ ├── ServerJavaScript.aspx
│ │ │ ├── ServerJavaScript.aspx.folded
│ │ │ ├── ServerJavaScript.aspx.styled
│ │ │ ├── apostophe.php
│ │ │ ├── apostophe.php.folded
│ │ │ ├── apostophe.php.styled
│ │ │ ├── comment.html
│ │ │ ├── comment.html.folded
│ │ │ ├── comment.html.styled
│ │ │ ├── mako.html
│ │ │ ├── mako.html.folded
│ │ │ ├── mako.html.styled
│ │ │ ├── x.asp
│ │ │ ├── x.asp.folded
│ │ │ ├── x.asp.styled
│ │ │ ├── x.html
│ │ │ ├── x.html.folded
│ │ │ ├── x.html.styled
│ │ │ ├── x.php
│ │ │ ├── x.php.folded
│ │ │ └── x.php.styled
│ │ ├── inno
│ │ │ ├── SciTE.properties
│ │ │ ├── x.iss
│ │ │ ├── x.iss.folded
│ │ │ └── x.iss.styled
│ │ ├── json
│ │ │ ├── AllStyles.json
│ │ │ ├── AllStyles.json.folded
│ │ │ ├── AllStyles.json.styled
│ │ │ └── SciTE.properties
│ │ ├── julia
│ │ │ ├── SciTE.properties
│ │ │ ├── x.jl
│ │ │ ├── x.jl.folded
│ │ │ └── x.jl.styled
│ │ ├── latex
│ │ │ ├── AllStyles.tex
│ │ │ ├── AllStyles.tex.folded
│ │ │ ├── AllStyles.tex.styled
│ │ │ ├── Feature1358.tex
│ │ │ ├── Feature1358.tex.folded
│ │ │ ├── Feature1358.tex.styled
│ │ │ └── SciTE.properties
│ │ ├── lua
│ │ │ ├── AllStyles.lua
│ │ │ ├── AllStyles.lua.folded
│ │ │ ├── AllStyles.lua.styled
│ │ │ ├── Bug2205.lua
│ │ │ ├── Bug2205.lua.folded
│ │ │ ├── Bug2205.lua.styled
│ │ │ ├── SciTE.properties
│ │ │ ├── folding.lua
│ │ │ ├── folding.lua.folded
│ │ │ ├── folding.lua.styled
│ │ │ ├── nonASCII242.lua
│ │ │ ├── nonASCII242.lua.folded
│ │ │ ├── nonASCII242.lua.styled
│ │ │ ├── x.lua
│ │ │ ├── x.lua.folded
│ │ │ └── x.lua.styled
│ │ ├── makefile
│ │ │ ├── SciTE.properties
│ │ │ ├── longline.mak
│ │ │ ├── longline.mak.folded
│ │ │ ├── longline.mak.styled
│ │ │ ├── x.mak
│ │ │ ├── x.mak.folded
│ │ │ └── x.mak.styled
│ │ ├── markdown
│ │ │ ├── AllStyles.md
│ │ │ ├── AllStyles.md.folded
│ │ │ ├── AllStyles.md.styled
│ │ │ ├── Bug1216.md
│ │ │ ├── Bug1216.md.folded
│ │ │ ├── Bug1216.md.styled
│ │ │ ├── Bug2235.md
│ │ │ ├── Bug2235.md.folded
│ │ │ ├── Bug2235.md.styled
│ │ │ ├── Bug2247.md
│ │ │ ├── Bug2247.md.folded
│ │ │ ├── Bug2247.md.styled
│ │ │ ├── HeaderEOLFill_0.md
│ │ │ ├── HeaderEOLFill_0.md.folded
│ │ │ ├── HeaderEOLFill_0.md.styled
│ │ │ ├── HeaderEOLFill_1.md
│ │ │ ├── HeaderEOLFill_1.md.folded
│ │ │ ├── HeaderEOLFill_1.md.styled
│ │ │ ├── Issue117.md
│ │ │ ├── Issue117.md.folded
│ │ │ ├── Issue117.md.styled
│ │ │ └── SciTE.properties
│ │ ├── matlab
│ │ │ ├── AllStyles.m.matlab
│ │ │ ├── AllStyles.m.matlab.folded
│ │ │ ├── AllStyles.m.matlab.styled
│ │ │ ├── AllStyles.m.octave
│ │ │ ├── AllStyles.m.octave.folded
│ │ │ ├── AllStyles.m.octave.styled
│ │ │ ├── ArgumentsBlock.m.matlab
│ │ │ ├── ArgumentsBlock.m.matlab.folded
│ │ │ ├── ArgumentsBlock.m.matlab.styled
│ │ │ ├── ClassDefinition.m.matlab
│ │ │ ├── ClassDefinition.m.matlab.folded
│ │ │ ├── ClassDefinition.m.matlab.styled
│ │ │ ├── FoldPoints.m.matlab
│ │ │ ├── FoldPoints.m.matlab.folded
│ │ │ ├── FoldPoints.m.matlab.styled
│ │ │ ├── Issue18_EscapeSequence.m.matlab
│ │ │ ├── Issue18_EscapeSequence.m.matlab.folded
│ │ │ ├── Issue18_EscapeSequence.m.matlab.styled
│ │ │ ├── Issue18_EscapeSequence.m.octave
│ │ │ ├── Issue18_EscapeSequence.m.octave.folded
│ │ │ ├── Issue18_EscapeSequence.m.octave.styled
│ │ │ ├── NumericLiterals.m.matlab
│ │ │ ├── NumericLiterals.m.matlab.folded
│ │ │ ├── NumericLiterals.m.matlab.styled
│ │ │ └── SciTE.properties
│ │ ├── mmixal
│ │ │ ├── AllStyles.mms
│ │ │ ├── AllStyles.mms.folded
│ │ │ ├── AllStyles.mms.styled
│ │ │ ├── SciTE.properties
│ │ │ ├── references.mms
│ │ │ ├── references.mms.folded
│ │ │ ├── references.mms.styled
│ │ │ ├── x.mms
│ │ │ ├── x.mms.folded
│ │ │ └── x.mms.styled
│ │ ├── modula
│ │ │ ├── 128Endless.m3
│ │ │ ├── 128Endless.m3.folded
│ │ │ ├── 128Endless.m3.styled
│ │ │ ├── Issue129.m3
│ │ │ ├── Issue129.m3.folded
│ │ │ ├── Issue129.m3.styled
│ │ │ ├── Issue297.m3
│ │ │ ├── Issue297.m3.folded
│ │ │ ├── Issue297.m3.styled
│ │ │ └── SciTE.properties
│ │ ├── mssql
│ │ │ ├── AllStyles.tsql
│ │ │ ├── AllStyles.tsql.folded
│ │ │ ├── AllStyles.tsql.styled
│ │ │ ├── Issue87.tsql
│ │ │ ├── Issue87.tsql.folded
│ │ │ ├── Issue87.tsql.styled
│ │ │ ├── Issue90.tsql
│ │ │ ├── Issue90.tsql.folded
│ │ │ ├── Issue90.tsql.styled
│ │ │ ├── SciTE.properties
│ │ │ ├── Various.tsql
│ │ │ ├── Various.tsql.folded
│ │ │ └── Various.tsql.styled
│ │ ├── mysql
│ │ │ ├── AllStyles.sql
│ │ │ ├── AllStyles.sql.folded
│ │ │ ├── AllStyles.sql.styled
│ │ │ └── SciTE.properties
│ │ ├── nim
│ │ │ ├── SciTE.properties
│ │ │ ├── x.nim
│ │ │ ├── x.nim.folded
│ │ │ └── x.nim.styled
│ │ ├── nix
│ │ │ ├── AllStyles.nix
│ │ │ ├── AllStyles.nix.folded
│ │ │ ├── AllStyles.nix.styled
│ │ │ └── SciTE.properties
│ │ ├── pascal
│ │ │ ├── AllStyles.pas
│ │ │ ├── AllStyles.pas.folded
│ │ │ ├── AllStyles.pas.styled
│ │ │ ├── CodeFolding.pas
│ │ │ ├── CodeFolding.pas.folded
│ │ │ ├── CodeFolding.pas.styled
│ │ │ ├── SciTE.properties
│ │ │ ├── SomeExample.pas
│ │ │ ├── SomeExample.pas.folded
│ │ │ └── SomeExample.pas.styled
│ │ ├── perl
│ │ │ ├── SciTE.properties
│ │ │ ├── perl-test-5220delta.pl
│ │ │ ├── perl-test-5220delta.pl.folded
│ │ │ ├── perl-test-5220delta.pl.styled
│ │ │ ├── perl-test-sub-prototypes.pl
│ │ │ ├── perl-test-sub-prototypes.pl.folded
│ │ │ ├── perl-test-sub-prototypes.pl.styled
│ │ │ ├── x.pl
│ │ │ ├── x.pl.folded
│ │ │ └── x.pl.styled
│ │ ├── powershell
│ │ │ ├── AllStyles.ps1
│ │ │ ├── AllStyles.ps1.folded
│ │ │ ├── AllStyles.ps1.styled
│ │ │ ├── CharacterTruncation.ps1
│ │ │ ├── CharacterTruncation.ps1.folded
│ │ │ ├── CharacterTruncation.ps1.styled
│ │ │ ├── NumericLiterals.ps1
│ │ │ ├── NumericLiterals.ps1.folded
│ │ │ ├── NumericLiterals.ps1.styled
│ │ │ ├── Pull92.ps1
│ │ │ ├── Pull92.ps1.folded
│ │ │ ├── Pull92.ps1.styled
│ │ │ ├── Pull99Comment.ps1
│ │ │ ├── Pull99Comment.ps1.folded
│ │ │ ├── Pull99Comment.ps1.styled
│ │ │ └── SciTE.properties
│ │ ├── progress
│ │ │ ├── SciTE.properties
│ │ │ ├── comment_test.p
│ │ │ ├── comment_test.p.folded
│ │ │ └── comment_test.p.styled
│ │ ├── props
│ │ │ ├── Issue96Folding.props
│ │ │ ├── Issue96Folding.props.folded
│ │ │ ├── Issue96Folding.props.styled
│ │ │ ├── SciTE.properties
│ │ │ ├── example.session
│ │ │ ├── example.session.folded
│ │ │ └── example.session.styled
│ │ ├── python
│ │ │ ├── AllStyles.py
│ │ │ ├── AllStyles.py.folded
│ │ │ ├── AllStyles.py.styled
│ │ │ ├── SciTE.properties
│ │ │ ├── attributes
│ │ │ │ ├── SciTE.properties
│ │ │ │ ├── attrib-decorator.py
│ │ │ │ ├── attrib-decorator.py.folded
│ │ │ │ ├── attrib-decorator.py.styled
│ │ │ │ ├── attrib-id.py
│ │ │ │ ├── attrib-id.py.folded
│ │ │ │ ├── attrib-id.py.styled
│ │ │ │ ├── attributes.py
│ │ │ │ ├── attributes.py.folded
│ │ │ │ └── attributes.py.styled
│ │ │ ├── f-strings.py
│ │ │ ├── f-strings.py.folded
│ │ │ ├── f-strings.py.styled
│ │ │ ├── matchcase.py
│ │ │ ├── matchcase.py.folded
│ │ │ ├── matchcase.py.styled
│ │ │ ├── strings.py
│ │ │ ├── strings.py.folded
│ │ │ ├── strings.py.styled
│ │ │ ├── x.py
│ │ │ ├── x.py.folded
│ │ │ └── x.py.styled
│ │ ├── r
│ │ │ ├── 102Backticks.r
│ │ │ ├── 102Backticks.r.folded
│ │ │ ├── 102Backticks.r.styled
│ │ │ ├── AllStyles.r
│ │ │ ├── AllStyles.r.folded
│ │ │ ├── AllStyles.r.styled
│ │ │ └── SciTE.properties
│ │ ├── raku
│ │ │ ├── SciTE.properties
│ │ │ ├── x.p6
│ │ │ ├── x.p6.folded
│ │ │ └── x.p6.styled
│ │ ├── ruby
│ │ │ ├── 225NumberDotMethod.rb
│ │ │ ├── 225NumberDotMethod.rb.folded
│ │ │ ├── 225NumberDotMethod.rb.styled
│ │ │ ├── 234HereDoc.rb
│ │ │ ├── 234HereDoc.rb.folded
│ │ │ ├── 234HereDoc.rb.styled
│ │ │ ├── AllStyles.rb
│ │ │ ├── AllStyles.rb.folded
│ │ │ ├── AllStyles.rb.styled
│ │ │ ├── Issue132.rb
│ │ │ ├── Issue132.rb.folded
│ │ │ ├── Issue132.rb.styled
│ │ │ ├── Issue135.rb
│ │ │ ├── Issue135.rb.folded
│ │ │ ├── Issue135.rb.styled
│ │ │ ├── Issue136.rb
│ │ │ ├── Issue136.rb.folded
│ │ │ ├── Issue136.rb.styled
│ │ │ ├── Issue140.rb
│ │ │ ├── Issue140.rb.folded
│ │ │ ├── Issue140.rb.styled
│ │ │ ├── Issue65.rb
│ │ │ ├── Issue65.rb.folded
│ │ │ ├── Issue65.rb.styled
│ │ │ ├── Issue66.rb
│ │ │ ├── Issue66.rb.folded
│ │ │ ├── Issue66.rb.styled
│ │ │ ├── Issue67.rb
│ │ │ ├── Issue67.rb.folded
│ │ │ ├── Issue67.rb.styled
│ │ │ ├── Issue69.rb
│ │ │ ├── Issue69.rb.folded
│ │ │ ├── Issue69.rb.styled
│ │ │ ├── PercentEquals124.rb
│ │ │ ├── PercentEquals124.rb.folded
│ │ │ ├── PercentEquals124.rb.styled
│ │ │ ├── SciTE.properties
│ │ │ ├── x.rb
│ │ │ ├── x.rb.folded
│ │ │ └── x.rb.styled
│ │ ├── rust
│ │ │ ├── Issue239.rs
│ │ │ ├── Issue239.rs.folded
│ │ │ ├── Issue239.rs.styled
│ │ │ ├── Issue268.rs
│ │ │ ├── Issue268.rs.folded
│ │ │ ├── Issue268.rs.styled
│ │ │ ├── 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
│ │ ├── smalltalk
│ │ │ ├── ClassificationTable.st
│ │ │ ├── ClassificationTable.st.folded
│ │ │ ├── ClassificationTable.st.styled
│ │ │ └── SciTE.properties
│ │ ├── sql
│ │ │ ├── AllStyles.sql
│ │ │ ├── AllStyles.sql.folded
│ │ │ ├── AllStyles.sql.styled
│ │ │ └── SciTE.properties
│ │ ├── tcl
│ │ │ ├── SciTE.properties
│ │ │ ├── x.tcl
│ │ │ ├── x.tcl.folded
│ │ │ └── x.tcl.styled
│ │ ├── toml
│ │ │ ├── AllStyles.toml
│ │ │ ├── AllStyles.toml.folded
│ │ │ ├── AllStyles.toml.styled
│ │ │ └── SciTE.properties
│ │ ├── troff
│ │ │ ├── AllStyles.roff
│ │ │ ├── AllStyles.roff.folded
│ │ │ ├── AllStyles.roff.styled
│ │ │ └── SciTE.properties
│ │ ├── vb
│ │ │ ├── AllStyles.vb
│ │ │ ├── AllStyles.vb.folded
│ │ │ ├── AllStyles.vb.styled
│ │ │ ├── AllStyles.vbs
│ │ │ ├── AllStyles.vbs.folded
│ │ │ ├── AllStyles.vbs.styled
│ │ │ ├── SciTE.properties
│ │ │ ├── x.vb
│ │ │ ├── x.vb.folded
│ │ │ └── x.vb.styled
│ │ ├── verilog
│ │ │ ├── AllStyles.vh
│ │ │ ├── AllStyles.vh.folded
│ │ │ ├── AllStyles.vh.styled
│ │ │ └── SciTE.properties
│ │ ├── vhdl
│ │ │ ├── SciTE.properties
│ │ │ ├── x.vhd
│ │ │ ├── x.vhd.folded
│ │ │ └── x.vhd.styled
│ │ ├── visualprolog
│ │ │ ├── AllStyles.pl
│ │ │ ├── AllStyles.pl.folded
│ │ │ ├── AllStyles.pl.styled
│ │ │ ├── AllStyles.pro
│ │ │ ├── AllStyles.pro.folded
│ │ │ ├── AllStyles.pro.styled
│ │ │ └── SciTE.properties
│ │ ├── x12
│ │ │ ├── SciTE.properties
│ │ │ ├── empty.x12
│ │ │ ├── empty.x12.folded
│ │ │ ├── empty.x12.styled
│ │ │ ├── x.x12
│ │ │ ├── x.x12.folded
│ │ │ └── x.x12.styled
│ │ ├── yaml
│ │ │ ├── SciTE.properties
│ │ │ ├── longline.yaml
│ │ │ ├── longline.yaml.folded
│ │ │ ├── longline.yaml.styled
│ │ │ ├── x.yaml
│ │ │ ├── x.yaml.folded
│ │ │ └── x.yaml.styled
│ │ └── zig
│ │ │ ├── AllStyles.zig
│ │ │ ├── AllStyles.zig.folded
│ │ │ ├── AllStyles.zig.styled
│ │ │ └── SciTE.properties
│ ├── makefile
│ ├── testlexers.mak
│ └── unit
│ │ ├── LICENSE_1_0.txt
│ │ ├── README
│ │ ├── Sci.natvis
│ │ ├── SciTE.properties
│ │ ├── UnitTester.cxx
│ │ ├── UnitTester.vcxproj
│ │ ├── catch.hpp
│ │ ├── makefile
│ │ ├── test.mak
│ │ ├── testCharacterSet.cxx
│ │ ├── testInList.cxx
│ │ ├── testLexerSimple.cxx
│ │ ├── testOptionSet.cxx
│ │ ├── testPropSetSimple.cxx
│ │ ├── testSparseState.cxx
│ │ ├── testWordList.cxx
│ │ └── unitTest.cxx
├── tgzsrc
├── version.txt
└── zipsrc.bat
├── packages.config
├── res
├── IntelliFile.ico
├── IntelliFile.png
├── IntelliFile.rc2
├── Toolbar.bmp
├── Toolbar256.bmp
├── buttons.bmp
├── filelarge.bmp
├── filesmall.bmp
├── info.bmp
├── main.bmp
├── ribbon.mfcribbon-ms
├── ribbon.png
├── writelarge.bmp
└── writesmall.bmp
├── resource.h
├── scintilla
├── .editorconfig
├── .hg_archival.txt
├── .hgeol
├── .hgignore
├── .hgtags
├── CONTRIBUTING
├── License.txt
├── README
├── call
│ └── ScintillaCall.cxx
├── cocoa
│ ├── DictionaryForCF.h
│ ├── InfoBar.h
│ ├── InfoBar.mm
│ ├── InfoBarCommunicator.h
│ ├── PlatCocoa.h
│ ├── PlatCocoa.mm
│ ├── QuartzTextLayout.h
│ ├── QuartzTextStyle.h
│ ├── QuartzTextStyleAttribute.h
│ ├── Scintilla
│ │ ├── Info.plist
│ │ ├── Scintilla.xcodeproj
│ │ │ ├── project.pbxproj
│ │ │ └── project.xcworkspace
│ │ │ │ ├── contents.xcworkspacedata
│ │ │ │ └── xcshareddata
│ │ │ │ └── IDEWorkspaceChecks.plist
│ │ └── module.modulemap
│ ├── ScintillaCocoa.h
│ ├── ScintillaCocoa.mm
│ ├── ScintillaTest
│ │ ├── AppController.h
│ │ ├── AppController.mm
│ │ ├── Info.plist
│ │ ├── Scintilla-Info.plist
│ │ ├── ScintillaTest.xcodeproj
│ │ │ ├── project.pbxproj
│ │ │ └── project.xcworkspace
│ │ │ │ ├── contents.xcworkspacedata
│ │ │ │ └── xcshareddata
│ │ │ │ └── IDEWorkspaceChecks.plist
│ │ ├── TestData.sql
│ │ ├── en.lproj
│ │ │ ├── InfoPlist.strings
│ │ │ └── MainMenu.xib
│ │ └── main.m
│ ├── ScintillaView.h
│ ├── ScintillaView.mm
│ ├── checkbuildosx.sh
│ └── res
│ │ ├── info_bar_bg.png
│ │ ├── info_bar_bg@2x.png
│ │ ├── mac_cursor_busy.png
│ │ ├── mac_cursor_busy@2x.png
│ │ ├── mac_cursor_flipped.png
│ │ └── mac_cursor_flipped@2x.png
├── cppcheck.suppress
├── delbin.bat
├── doc
│ ├── AddSource.txt
│ ├── ChangeHistory.png
│ ├── Design.html
│ ├── Icons.html
│ ├── Indicators.png
│ ├── Lexer.txt
│ ├── Markers.png
│ ├── Privacy.html
│ ├── SciBreak.jpg
│ ├── SciCoding.html
│ ├── SciRest.jpg
│ ├── SciTEIco.png
│ ├── SciWord.jpg
│ ├── Scintilla5Migration.html
│ ├── ScintillaDoc.html
│ ├── ScintillaDownload.html
│ ├── ScintillaHistory.html
│ ├── ScintillaLogo.png
│ ├── ScintillaLogo2x.png
│ ├── ScintillaRelated.html
│ ├── ScintillaToDo.html
│ ├── ScintillaUsage.html
│ ├── StadiumVariants.png
│ ├── Steps.html
│ ├── StyleMetadata.html
│ ├── annotations.png
│ ├── eolannotation.png
│ ├── index.html
│ └── styledmargin.png
├── gtk
│ ├── Converter.h
│ ├── DepGen.py
│ ├── PlatGTK.cxx
│ ├── ScintillaGTK.cxx
│ ├── ScintillaGTK.h
│ ├── ScintillaGTKAccessible.cxx
│ ├── ScintillaGTKAccessible.h
│ ├── Wrappers.h
│ ├── deps.mak
│ ├── makefile
│ ├── scintilla-marshal.c
│ ├── scintilla-marshal.h
│ └── scintilla-marshal.list
├── include
│ ├── ILexer.h
│ ├── ILoader.h
│ ├── Sci_Position.h
│ ├── Scintilla.h
│ ├── Scintilla.iface
│ ├── ScintillaCall.h
│ ├── ScintillaMessages.h
│ ├── ScintillaStructures.h
│ ├── ScintillaTypes.h
│ └── ScintillaWidget.h
├── qt
│ ├── README
│ ├── ScintillaEdit
│ │ ├── ScintillaDocument.cpp
│ │ ├── ScintillaDocument.h
│ │ ├── ScintillaEdit.cpp.template
│ │ ├── ScintillaEdit.h.template
│ │ ├── ScintillaEdit.pro
│ │ └── WidgetGen.py
│ └── ScintillaEditBase
│ │ ├── Notes.txt
│ │ ├── PlatQt.cpp
│ │ ├── PlatQt.h
│ │ ├── ScintillaEditBase.cpp
│ │ ├── ScintillaEditBase.h
│ │ ├── ScintillaEditBase.pro
│ │ ├── ScintillaQt.cpp
│ │ └── ScintillaQt.h
├── scripts
│ ├── CheckMentioned.py
│ ├── Dependencies.py
│ ├── Face.py
│ ├── FileGenerator.py
│ ├── GenerateCaseConvert.py
│ ├── GenerateCharacterCategory.py
│ ├── HFacer.py
│ ├── HeaderCheck.py
│ ├── HeaderOrder.txt
│ ├── LexGen.py
│ ├── ScintillaAPIFacer.py
│ ├── ScintillaData.py
│ ├── __init__.py
│ └── archive.sh
├── src
│ ├── AutoComplete.cxx
│ ├── AutoComplete.h
│ ├── CallTip.cxx
│ ├── CallTip.h
│ ├── CaseConvert.cxx
│ ├── CaseConvert.h
│ ├── CaseFolder.cxx
│ ├── CaseFolder.h
│ ├── CellBuffer.cxx
│ ├── CellBuffer.h
│ ├── ChangeHistory.cxx
│ ├── ChangeHistory.h
│ ├── CharClassify.cxx
│ ├── CharClassify.h
│ ├── CharacterCategoryMap.cxx
│ ├── CharacterCategoryMap.h
│ ├── CharacterType.cxx
│ ├── CharacterType.h
│ ├── ContractionState.cxx
│ ├── ContractionState.h
│ ├── DBCS.cxx
│ ├── DBCS.h
│ ├── Debugging.h
│ ├── Decoration.cxx
│ ├── Decoration.h
│ ├── Document.cxx
│ ├── Document.h
│ ├── EditModel.cxx
│ ├── EditModel.h
│ ├── EditView.cxx
│ ├── EditView.h
│ ├── Editor.cxx
│ ├── Editor.h
│ ├── ElapsedPeriod.h
│ ├── Geometry.cxx
│ ├── Geometry.h
│ ├── Indicator.cxx
│ ├── Indicator.h
│ ├── KeyMap.cxx
│ ├── KeyMap.h
│ ├── LineMarker.cxx
│ ├── LineMarker.h
│ ├── MarginView.cxx
│ ├── MarginView.h
│ ├── Partitioning.h
│ ├── PerLine.cxx
│ ├── PerLine.h
│ ├── Platform.h
│ ├── Position.h
│ ├── PositionCache.cxx
│ ├── PositionCache.h
│ ├── RESearch.cxx
│ ├── RESearch.h
│ ├── RunStyles.cxx
│ ├── RunStyles.h
│ ├── SciTE.properties
│ ├── ScintillaBase.cxx
│ ├── ScintillaBase.h
│ ├── Selection.cxx
│ ├── Selection.h
│ ├── SparseVector.h
│ ├── SplitVector.h
│ ├── Style.cxx
│ ├── Style.h
│ ├── UndoHistory.cxx
│ ├── UndoHistory.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
│ │ ├── testSelection.cxx
│ │ ├── testSparseVector.cxx
│ │ ├── testSplitVector.cxx
│ │ ├── testUniConversion.cxx
│ │ └── unitTest.cxx
│ ├── win32Tests.py
│ └── xite.py
├── tgzsrc
├── version.txt
├── win32
│ ├── DepGen.py
│ ├── HanjaDic.cxx
│ ├── HanjaDic.h
│ ├── ListBox.cxx
│ ├── ListBox.h
│ ├── PlatWin.cxx
│ ├── PlatWin.h
│ ├── SciTE.properties
│ ├── ScintRes.rc
│ ├── Scintilla.def
│ ├── Scintilla.vcxproj
│ ├── ScintillaDLL.cxx
│ ├── ScintillaWin.cxx
│ ├── ScintillaWin.h
│ ├── SurfaceD2D.cxx
│ ├── SurfaceD2D.h
│ ├── SurfaceGDI.cxx
│ ├── SurfaceGDI.h
│ ├── WinTypes.h
│ ├── deps.mak
│ ├── makefile
│ ├── nmdeps.mak
│ └── scintilla.mak
└── zipsrc.bat
├── sinstance.cpp
├── sinstance.h
├── stdafx.cpp
├── stdafx.h
├── targetver.h
└── x64
└── Release
├── IntelliFile.chm
├── IntelliFile.exe
├── Lexilla.dll
├── Scintilla.dll
├── WebView2Loader.dll
└── genUp4win.dll
/HexCtrl/.gitattributes:
--------------------------------------------------------------------------------
1 | *.rc diff
2 | *.rc2 diff
--------------------------------------------------------------------------------
/HexCtrl/HexCtrl/res/IDB_HEXCTRL_BKMS.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mihaimoga/IntelliFile/fbae3c75ec9e31bcfbb936e43a69a1507c6d35ba/HexCtrl/HexCtrl/res/IDB_HEXCTRL_BKMS.bmp
--------------------------------------------------------------------------------
/HexCtrl/HexCtrl/res/IDB_HEXCTRL_CLPBRD_COPYHEX.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mihaimoga/IntelliFile/fbae3c75ec9e31bcfbb936e43a69a1507c6d35ba/HexCtrl/HexCtrl/res/IDB_HEXCTRL_CLPBRD_COPYHEX.bmp
--------------------------------------------------------------------------------
/HexCtrl/HexCtrl/res/IDB_HEXCTRL_CLPBRD_PASTEHEX.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mihaimoga/IntelliFile/fbae3c75ec9e31bcfbb936e43a69a1507c6d35ba/HexCtrl/HexCtrl/res/IDB_HEXCTRL_CLPBRD_PASTEHEX.bmp
--------------------------------------------------------------------------------
/HexCtrl/HexCtrl/res/IDB_HEXCTRL_FONTCHOOSE.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mihaimoga/IntelliFile/fbae3c75ec9e31bcfbb936e43a69a1507c6d35ba/HexCtrl/HexCtrl/res/IDB_HEXCTRL_FONTCHOOSE.bmp
--------------------------------------------------------------------------------
/HexCtrl/HexCtrl/res/IDB_HEXCTRL_GROUP.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mihaimoga/IntelliFile/fbae3c75ec9e31bcfbb936e43a69a1507c6d35ba/HexCtrl/HexCtrl/res/IDB_HEXCTRL_GROUP.bmp
--------------------------------------------------------------------------------
/HexCtrl/HexCtrl/res/IDB_HEXCTRL_LOGO.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mihaimoga/IntelliFile/fbae3c75ec9e31bcfbb936e43a69a1507c6d35ba/HexCtrl/HexCtrl/res/IDB_HEXCTRL_LOGO.bmp
--------------------------------------------------------------------------------
/HexCtrl/HexCtrl/res/IDB_HEXCTRL_MODIFY.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mihaimoga/IntelliFile/fbae3c75ec9e31bcfbb936e43a69a1507c6d35ba/HexCtrl/HexCtrl/res/IDB_HEXCTRL_MODIFY.bmp
--------------------------------------------------------------------------------
/HexCtrl/HexCtrl/res/IDB_HEXCTRL_MODIFY_FILLZEROS.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mihaimoga/IntelliFile/fbae3c75ec9e31bcfbb936e43a69a1507c6d35ba/HexCtrl/HexCtrl/res/IDB_HEXCTRL_MODIFY_FILLZEROS.bmp
--------------------------------------------------------------------------------
/HexCtrl/HexCtrl/res/IDB_HEXCTRL_SEARCH.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mihaimoga/IntelliFile/fbae3c75ec9e31bcfbb936e43a69a1507c6d35ba/HexCtrl/HexCtrl/res/IDB_HEXCTRL_SEARCH.bmp
--------------------------------------------------------------------------------
/HexCtrl/VS Projects/MFC Dialog DLL/CMFCDialogDLLApp.h:
--------------------------------------------------------------------------------
1 | #pragma once
2 | #include << Write application-specific help here. >> << Write application-specific help here. >> << Write application-specific help here. >> << Delete this help topic if your application supports only one document type. >> Specify the type of document you want to create: << List your application's document types here >> << Write application-specific help here. >> This area is provided to contain dockable toolbars, such as the default toolbar created for the application. Docking toolbars can be dragged onto or off this client area, and arrange themselves according to the space available. Use this command to display the copyright notice and version number of your copy of <<YourApp>>. << Write application-specific help here. >> << Write application-specific help here. >> Use this command to copy selected data onto the clipboard. This command is unavailable if there is no data currently selected. Copying data to the clipboard replaces the contents previously stored there. Use this command to remove the currently selected data from the document and put it on the clipboard. This command is unavailable if there is no data currently selected. Cutting data to the clipboard replaces the contents previously stored there. << Write application-specific help here. >> Use this command to insert a copy of the clipboard contents at the insertion point. This command is unavailable if the clipboard is empty. << Write application-specific help here. >> Use this command to repeat the last editing command carried out. The Repeat menu item changes to
14 | Can't Repeat if you cannot repeat your last action. << Write application-specific help here. >> Use this command to send the active document through e-mail. This command presents a mail window with the active document attached to it. You may then fill out the
14 | To field, Subject field, and so on, and add text to the body of the message. When you are finished, you
15 | can click the Send button to send the message. Use this command to display the opening screen of help. From the opening screen, you can jump to step-by-step instructions for using <<YourApp>> and various types of reference information. Once you open help, you can click the Contents button whenever you want to return to the opening screen. Using Help command (Help menu) Use this command for instructions about using help. No help is available for this area of the window. << Write application-specific help here. >> << Write application-specific help here. >> Use this command to close the active window or dialog box. Double-clicking a Control menu box is the same as choosing the Close command. Note: If you have multiple windows open for a single document, the Close command on the document Control menu closes only one window at a time. You can close all windows at once with the Close command on the File menu. Maximize command (System menu) Use this command to enlarge the active window to fill the available space. Minimize command (application Control menu) Use this command to reduce the <<YourApp>> window to an icon. Use this command to display a four-headed arrow so you can move the active window or dialog box with the arrow keys. Note: This command is unavailable if you maximize the window. Next Window command (document Control menu) Use this command to switch to the next open document window. <<YourApp>> determines which window is next according to the order in which you opened the windows. Previous Window command (document Control menu) Use this command to switch to the previous open document window. <<YourApp>> determines which window is previous according to the order in which you opened the windows. Restore command (Control menu) Use this command to return the active window to its size and position before you chose the
14 | Maximize or Minimize command. << Write application-specific help here. >> 1, 2, ... command (Window menu) <<YourApp>> displays a list of currently open document windows at the bottom of the
14 | Window menu. A checkmark appears in front of the document name of the active window. Choose a document from this list to make its window active. Use this command to arrange the icons for minimized windows at the bottom of the main window. If there is an open document window at the bottom of the main window, then some or all of the icons may not be visible because they will be underneath this d
14 | ocument window. Use this command to arrange multiple opened windows in an overlapped fashion. Use this command to arrange multiple opened windows in a nonoverlapped fashion. Tile Horizontal command (Window menu) Use this command to vertically arrange multiple opened windows in a
14 | nonoverlapped fashion. Tile Vertical command (Window menu) Use this command to arrange multiple opened windows side by side. Displayed at the right and bottom edges of the document window. The scroll boxes inside the scrollbars indicate your vertical and horizontal location in the document. You can use the mouse to scroll to other parts of the document. << Describe the actions of the various parts of the scrollbar, according to how they behave in your application. >>
8 |
9 |
10 |
--------------------------------------------------------------------------------
/hlp/afx_hidd_color.htm:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | &1
7 | &A
8 | &中
9 | &&
10 |
11 | 中
12 | &A;
13 |
14 | 中
15 | &
16 | <
17 | <
18 | &b.eps;
19 | &b.eps!
20 | &—;
21 |
--------------------------------------------------------------------------------
/lexilla/test/examples/hypertext/Issue192.html.folded:
--------------------------------------------------------------------------------
1 | 0 400 0 &
2 | 0 400 0 &1
3 | 0 400 0 &A
4 | 0 400 0 &中
5 | 0 400 0 &
6 | 0 400 0 &1
7 | 0 400 0 &A
8 | 0 400 0 &中
9 | 0 400 0 &&
10 | 0 400 0
11 | 0 400 0 中
12 | 0 400 0 &A;
13 | 0 400 0
14 | 0 400 0 中
15 | 0 400 0 &
16 | 0 400 0 <
17 | 0 400 0 <
18 | 0 400 0 &b.eps;
19 | 0 400 0 &b.eps!
20 | 0 400 0 &—;
21 | 0 400 0
--------------------------------------------------------------------------------
/lexilla/test/examples/hypertext/Issue192.html.styled:
--------------------------------------------------------------------------------
1 | {2}&{0}
2 | {2}&1{0}
3 | {2}&A{0}
4 | {2}&{0}中
5 | {2}&{1}
{0}
6 | {2}&1{1}
{0}
7 | {2}&A{1}
{0}
8 | {2}&{0}中{1}
{0}
9 | {2}&{10}&{0}
10 | {10}{0}
11 | {10}{0}中
12 | {10}&A;{1}
{0}
13 | {10}{1}
{0}
14 | {10}{0}中{1}
{0}
15 | {2}&{0}
16 | {10}<{0}
17 | {10}<{1}
{0}
18 | {10}&b.eps;{0}
19 | {2}&b.eps{0}!
20 | {2}&{0}—;
21 |
--------------------------------------------------------------------------------
/lexilla/test/examples/hypertext/Issue20Numbers.php:
--------------------------------------------------------------------------------
1 |
31 |
--------------------------------------------------------------------------------
/lexilla/test/examples/hypertext/Issue250RegEx.html:
--------------------------------------------------------------------------------
1 |
11 |
--------------------------------------------------------------------------------
/lexilla/test/examples/hypertext/Issue250RegEx.html.folded:
--------------------------------------------------------------------------------
1 | 2 400 0 +
11 | 0 400 0
--------------------------------------------------------------------------------
/lexilla/test/examples/hypertext/Issue250RegEx.html.styled:
--------------------------------------------------------------------------------
1 | {1}{0}
11 |
--------------------------------------------------------------------------------
/lexilla/test/examples/hypertext/Issue252Tag.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
7 |
8 |
9 | = 'echo' ?>
10 |
11 |
12 |
13 | echo 'short'
14 | ?>
15 |
16 |
17 | <%@language=JScript%>
18 |
19 |
20 | <%
21 | Response.Write('short')
22 | %>
23 |
--------------------------------------------------------------------------------
/lexilla/test/examples/hypertext/Issue252Tag.php.folded:
--------------------------------------------------------------------------------
1 | 0 400 0
2 | 1 400 0
3 | 0 400 0
4 | 2 400 0 +
7 | 1 400 0
8 | 0 400 0
9 | 0 400 0 = 'echo' ?>
10 | 1 400 0
11 | 0 400 0
12 | 0 400 0
13 | 0 400 0 echo 'short'
14 | 2 400 0 + ?>
15 | 1 401 0 |
16 | 0 401 0 |
17 | 2 401 0 + <%@language=JScript%>
18 | 1 402 0 |
19 | 0 402 0 |
20 | 0 402 0 | <%
21 | 0 402 0 | Response.Write('short')
22 | 2 402 0 + %>
23 | 0 403 0 |
--------------------------------------------------------------------------------
/lexilla/test/examples/hypertext/Issue252Tag.php.styled:
--------------------------------------------------------------------------------
1 | {9}{0}
2 |
3 | {9}{0}
4 | {18}{0}
7 |
8 | {9}{0}
9 | {18}={118} {120}'echo'{118} {18}?>{0}
10 |
11 | {9}{0}
12 | {2}
13 | echo 'short'
14 | ?>{0}
15 |
16 | {9}{0}
17 | {2}<%@language=JScript%>{0}
18 |
19 | {9}{0}
20 | {2}<%
21 | Response.Write('short')
22 | %>{0}
23 |
--------------------------------------------------------------------------------
/lexilla/test/examples/hypertext/Issue259CaseLower.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | <%@language=vbscript%>
4 | <%
5 | sub x 'comment
6 | peek 1024
7 | %>
8 |
9 |
10 |
12 |
13 |
1 normal comment
2 |2 valid comment
3 |3 abrupt-closing-of-empty-comment
4 |4 abrupt-closing-of-empty-comment
5 |5 incorrectly-closed-comment
6 |6 incorrectly-closed-comment
7 |7 nested-comment
8 |8 nested-comment
9 | -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/comment.html.folded: -------------------------------------------------------------------------------- 1 | 0 400 01 normal comment
2 | 0 400 02 valid comment
3 | 0 400 03 abrupt-closing-of-empty-comment
4 | 0 400 04 abrupt-closing-of-empty-comment
5 | 0 400 05 incorrectly-closed-comment
6 | 0 400 06 incorrectly-closed-comment
7 | 0 400 07 nested-comment
8 | 0 400 08 nested-comment
9 | 0 400 0 -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/comment.html.styled: -------------------------------------------------------------------------------- 1 | {9}{1}{0}1 normal comment{1}
{0} 2 | {9}{1}{0}2 valid comment{1}
{0} 3 | {9}{1}{0}3 abrupt-closing-of-empty-comment{1}
{0} 4 | {9}{1}{0}4 abrupt-closing-of-empty-comment{1}
{0} 5 | {9}{1}{0}5 incorrectly-closed-comment{1}
{0} 6 | {9}{1}{0}6 incorrectly-closed-comment{1}
{0} 7 | {9}{1}{0}7 nested-comment{1}
{0} 8 | {9}{1}{0}8 nested-comment{1}
{0} 9 | -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/mako.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mihaimoga/IntelliFile/fbae3c75ec9e31bcfbb936e43a69a1507c6d35ba/lexilla/test/examples/hypertext/mako.html -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/mako.html.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mihaimoga/IntelliFile/fbae3c75ec9e31bcfbb936e43a69a1507c6d35ba/lexilla/test/examples/hypertext/mako.html.folded -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/mako.html.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mihaimoga/IntelliFile/fbae3c75ec9e31bcfbb936e43a69a1507c6d35ba/lexilla/test/examples/hypertext/mako.html.styled -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/x.asp: -------------------------------------------------------------------------------- 1 | <%@language=javas%> 2 | <% 3 | #include 4 | serve x; 5 | function x() { 6 | } 7 | %> 8 | <%@language=vbscript%> 9 | <% 10 | sub x 'comment 11 | peek 1024 12 | %> 13 | 14 | <%@language=python%> 15 | <% 16 | import random 17 | x = 'comment' 18 | parse "x=8" 19 | %> 20 | 21 | 22 | -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/x.asp.folded: -------------------------------------------------------------------------------- 1 | 0 400 0 <%@language=javas%> 2 | 2 400 0 + <% 3 | 0 401 0 | #include 4 | 0 401 0 | serve x; 5 | 2 401 0 + function x() { 6 | 0 402 0 | } 7 | 0 401 0 | %> 8 | 0 400 0 <%@language=vbscript%> 9 | 2 400 0 + <% 10 | 0 401 0 | sub x 'comment 11 | 0 401 0 | peek 1024 12 | 0 401 0 | %> 13 | 0 400 0 14 | 0 400 0 <%@language=python%> 15 | 0 400 0 <% 16 | 0 400 0 import random 17 | 0 400 0 x = 'comment' 18 | 0 400 0 parse "x=8" 19 | 0 400 0 %> 20 | 2 3ff 0 + 21 | 0 400 0 22 | 0 400 0 -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/x.asp.styled: -------------------------------------------------------------------------------- 1 | {15}<%@{16}language=javas{15}%>{0} 2 | {15}<%{56} 3 | #{61}include{56} 4 | {195}serve{56} {61}x{65};{56} 5 | {62}function{56} {61}x{65}(){56} {65}{{56} 6 | {65}}{56} 7 | {15}%>{0} 8 | {15}<%@{16}language=vbscript{15}%>{0} 9 | {15}<%{81} 10 | {84}sub{81} {86}x{81} {82}'comment {81} 11 | {196}peek{81} {83}1024{81} 12 | {15}%>{0} 13 | {9}{0} 14 | {15}<%@{16}language=python{15}%>{0} 15 | {15}<%{106} 16 | {111}import{106} {117}random{106} 17 | {117}x{106} {116}={106} {110}'comment'{106} 18 | {197}parse{106} {109}"x=8"{106} 19 | {15}%>{0} 20 | {1}{0} 21 | {1}{0} 22 | -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/x.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 12 | 13 | 14 |