├── .github ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── 1-bug.yml │ ├── 2-feature-request.yml │ └── config.yml ├── dependabot.yml └── workflows │ ├── CI_build.yml │ └── release-notifier.yml ├── .gitignore ├── BUILD.md ├── CONTRIBUTING.md ├── LICENSE ├── PowerEditor ├── Test │ ├── FunctionList │ │ ├── ada │ │ │ ├── unitTest.expected.result │ │ │ └── unittest │ │ ├── asm │ │ │ ├── unitTest │ │ │ └── unitTest.expected.result │ │ ├── autoit │ │ │ ├── unitTest │ │ │ └── unitTest.expected.result │ │ ├── bash │ │ │ ├── unitTest │ │ │ └── unitTest.expected.result │ │ ├── batch │ │ │ ├── unitTest │ │ │ └── unitTest.expected.result │ │ ├── c │ │ │ ├── unitTest │ │ │ └── unitTest.expected.result │ │ ├── cpp │ │ │ ├── 1 │ │ │ │ ├── unitTest │ │ │ │ └── unitTest.expected.result │ │ │ ├── unitTest │ │ │ └── unitTest.expected.result │ │ ├── cs │ │ │ ├── unitTest │ │ │ └── unitTest.expected.result │ │ ├── fortran │ │ │ ├── unitTest.expected.result │ │ │ └── unittest │ │ ├── fortran77 │ │ │ ├── unitTest.expected.result │ │ │ └── unittest │ │ ├── gdscript │ │ │ ├── unitTest │ │ │ └── unitTest.expected.result │ │ ├── haskell │ │ │ ├── unitTest.expected.result │ │ │ └── unittest │ │ ├── hollywood │ │ │ ├── unitTest │ │ │ └── unitTest.expected.result │ │ ├── ini │ │ │ ├── unitTest │ │ │ └── unitTest.expected.result │ │ ├── inno │ │ │ ├── unitTest │ │ │ └── unitTest.expected.result │ │ ├── java │ │ │ ├── unitTest │ │ │ └── unitTest.expected.result │ │ ├── javascript │ │ │ ├── unitTest │ │ │ └── unitTest.expected.result │ │ ├── latex │ │ │ ├── unitTest │ │ │ └── unitTest.expected.result │ │ ├── localUnitestLauncher.ps1 │ │ ├── lua │ │ │ ├── unitTest │ │ │ └── unitTest.expected.result │ │ ├── nsis │ │ │ ├── unitTest │ │ │ └── unitTest.expected.result │ │ ├── pascal │ │ │ ├── unitTest │ │ │ └── unitTest.expected.result │ │ ├── perl │ │ │ ├── unitTest │ │ │ └── unitTest.expected.result │ │ ├── php │ │ │ ├── unitTest │ │ │ └── unitTest.expected.result │ │ ├── powershell │ │ │ ├── unitTest │ │ │ └── unitTest.expected.result │ │ ├── python │ │ │ ├── baddeftest │ │ │ │ ├── unitTest │ │ │ │ └── unitTest.expected.result │ │ │ ├── function_space_test │ │ │ │ ├── unitTest │ │ │ │ ├── unitTest.expected.result │ │ │ │ └── unitTest.result.json │ │ │ ├── unitTest │ │ │ └── unitTest.expected.result │ │ ├── raku │ │ │ ├── unitTest │ │ │ └── unitTest.expected.result │ │ ├── ruby │ │ │ ├── unitTest │ │ │ └── unitTest.expected.result │ │ ├── rust │ │ │ ├── unitTest │ │ │ └── unitTest.expected.result │ │ ├── sas │ │ │ ├── unitTest │ │ │ └── unitTest.expected.result │ │ ├── sql │ │ │ ├── comment_assignment │ │ │ │ ├── unitTest │ │ │ │ └── unitTest.expected.result │ │ │ ├── unitTest │ │ │ └── unitTest.expected.result │ │ ├── tex │ │ │ ├── unitTest │ │ │ └── unitTest.expected.result │ │ ├── toml │ │ │ ├── unitTest │ │ │ └── unitTest.expected.result │ │ ├── typescript │ │ │ ├── unitTest │ │ │ └── unitTest.expected.result │ │ ├── udl-NppExec │ │ │ ├── unitTest │ │ │ └── unitTest.expected.result │ │ ├── udl-regexGlobalTest │ │ │ ├── unitTest │ │ │ └── unitTest.expected.result │ │ ├── unitTest.ps1 │ │ ├── unitTestLauncher.ps1 │ │ ├── vb │ │ │ ├── unitTest │ │ │ └── unitTest.expected.result │ │ ├── vhdl │ │ │ ├── unitTest │ │ │ └── unitTest.expected.result │ │ └── xml │ │ │ ├── unitTest │ │ │ └── unitTest.expected.result │ ├── UrlDetection │ │ ├── plugins │ │ │ ├── Config │ │ │ │ └── startup.lua │ │ │ └── LuaScript │ │ │ │ ├── Lua.dll │ │ │ │ └── LuaScript.dll │ │ ├── readMe.txt │ │ ├── verifyUrlDetection.lua │ │ ├── verifyUrlDetection.ps1 │ │ ├── verifyUrlDetection_1a │ │ ├── verifyUrlDetection_1a.expected.result │ │ ├── verifyUrlDetection_1b │ │ └── verifyUrlDetection_1b.expected.result │ └── xmlValidator │ │ ├── autoCompletion.xsd │ │ ├── config.xsd │ │ ├── contextMenu.xsd │ │ ├── functionList.xsd │ │ ├── langs.xsd │ │ ├── nativeLang.xsd │ │ ├── shortcuts.xsd │ │ ├── tabContext.xsd │ │ ├── theme.xsd │ │ ├── toolbarButtons.xsd │ │ └── validator_xml.py ├── bin │ ├── change.log │ ├── doLocalConf.xml │ ├── nppLogNulContentCorruptionIssue.xml │ ├── readme.txt │ └── userDefineLangs │ │ ├── markdown._preinstalled.udl.xml │ │ └── markdown._preinstalled_DM.udl.xml ├── gcc │ ├── gcc-fixes.h │ ├── makefile │ └── manifest.rc ├── installer │ ├── APIs │ │ ├── BaanC.xml │ │ ├── actionscript.xml │ │ ├── autoit.xml │ │ ├── batch.xml │ │ ├── c.xml │ │ ├── cmake.xml │ │ ├── cobol.xml │ │ ├── coffee.xml │ │ ├── cpp.xml │ │ ├── cs.xml │ │ ├── css.xml │ │ ├── gdscript.xml │ │ ├── go.xml │ │ ├── html.xml │ │ ├── java.xml │ │ ├── javascript.xml │ │ ├── lisp.xml │ │ ├── lua.xml │ │ ├── nsis.xml │ │ ├── perl.xml │ │ ├── php.xml │ │ ├── powershell.xml │ │ ├── python.xml │ │ ├── raku.xml │ │ ├── rc.xml │ │ ├── sas.xml │ │ ├── sql.xml │ │ ├── tex.xml │ │ ├── typescript.xml │ │ ├── vb.xml │ │ ├── vhdl.xml │ │ └── xml.xml │ ├── bin │ │ └── xmlUpdater.exe │ ├── filesForTesting │ │ ├── overrideMap.xml │ │ └── regexGlobalTest.xml │ ├── functionList │ │ ├── ada.xml │ │ ├── asm.xml │ │ ├── autoit.xml │ │ ├── baanc.xml │ │ ├── bash.xml │ │ ├── batch.xml │ │ ├── c.xml │ │ ├── cobol-free.xml │ │ ├── cobol.xml │ │ ├── cpp.xml │ │ ├── cs.xml │ │ ├── fortran.xml │ │ ├── fortran77.xml │ │ ├── gdscript.xml │ │ ├── haskell.xml │ │ ├── hollywood.xml │ │ ├── ini.xml │ │ ├── inno.xml │ │ ├── java.xml │ │ ├── javascript.js.xml │ │ ├── krl.xml │ │ ├── latex.xml │ │ ├── lua.xml │ │ ├── nppexec.xml │ │ ├── nsis.xml │ │ ├── overrideMap.xml │ │ ├── pascal.xml │ │ ├── perl.xml │ │ ├── php.xml │ │ ├── powershell.xml │ │ ├── python.xml │ │ ├── raku.xml │ │ ├── ruby.xml │ │ ├── rust.xml │ │ ├── sas.xml │ │ ├── sinumerik.xml │ │ ├── sql.xml │ │ ├── tex.xml │ │ ├── toml.xml │ │ ├── typescript.xml │ │ ├── universe_basic.xml │ │ ├── vb.xml │ │ ├── vhdl.xml │ │ └── xml.xml │ ├── images │ │ ├── NppDownload.psd │ │ ├── header.bmp │ │ ├── headerLeft.bmp │ │ ├── headerLeft_RTL.bmp │ │ ├── headerRight.bmp │ │ ├── npp_inst.ico │ │ ├── splash.bmp │ │ ├── wizard.bmp │ │ └── wizard_GiletJaune.bmp │ ├── nativeLang │ │ ├── abkhazian.xml │ │ ├── afrikaans.xml │ │ ├── albanian.xml │ │ ├── arabic.xml │ │ ├── aragonese.xml │ │ ├── aranese.xml │ │ ├── azerbaijani.xml │ │ ├── basque.xml │ │ ├── belarusian.xml │ │ ├── bengali.xml │ │ ├── bosnian.xml │ │ ├── brazilian_portuguese.xml │ │ ├── breton.xml │ │ ├── bulgarian.xml │ │ ├── catalan.xml │ │ ├── chineseSimplified.xml │ │ ├── corsican.xml │ │ ├── croatian.xml │ │ ├── czech.xml │ │ ├── danish.xml │ │ ├── dutch.xml │ │ ├── english.xml │ │ ├── english_customizable.xml │ │ ├── esperanto.xml │ │ ├── estonian.xml │ │ ├── extremaduran.xml │ │ ├── farsi.xml │ │ ├── finnish.xml │ │ ├── french.xml │ │ ├── friulian.xml │ │ ├── galician.xml │ │ ├── georgian.xml │ │ ├── german.xml │ │ ├── greek.xml │ │ ├── gujarati.xml │ │ ├── hebrew.xml │ │ ├── hindi.xml │ │ ├── hongKongCantonese.xml │ │ ├── hungarian.xml │ │ ├── indonesian.xml │ │ ├── irish.xml │ │ ├── italian.xml │ │ ├── japanese.xml │ │ ├── kabyle.xml │ │ ├── kannada.xml │ │ ├── kazakh.xml │ │ ├── korean.xml │ │ ├── kurdish.xml │ │ ├── kyrgyz.xml │ │ ├── latvian.xml │ │ ├── ligurian.xml │ │ ├── lithuanian.xml │ │ ├── luxembourgish.xml │ │ ├── macedonian.xml │ │ ├── malay.xml │ │ ├── marathi.xml │ │ ├── mongolian.xml │ │ ├── nepali.xml │ │ ├── norwegian.xml │ │ ├── nynorsk.xml │ │ ├── occitan.xml │ │ ├── piglatin.xml │ │ ├── polish.xml │ │ ├── portuguese.xml │ │ ├── punjabi.xml │ │ ├── romanian.xml │ │ ├── russian.xml │ │ ├── samogitian.xml │ │ ├── sardinian.xml │ │ ├── serbian.xml │ │ ├── serbianCyrillic.xml │ │ ├── sinhala.xml │ │ ├── slovak.xml │ │ ├── slovenian.xml │ │ ├── spanish.xml │ │ ├── spanish_ar.xml │ │ ├── swedish.xml │ │ ├── tagalog.xml │ │ ├── taiwaneseMandarin.xml │ │ ├── tajikCyrillic.xml │ │ ├── tamil.xml │ │ ├── tatar.xml │ │ ├── telugu.xml │ │ ├── thai.xml │ │ ├── turkish.xml │ │ ├── ukrainian.xml │ │ ├── urdu.xml │ │ ├── uyghur.xml │ │ ├── uzbek.xml │ │ ├── uzbekCyrillic.xml │ │ ├── venetian.xml │ │ ├── vietnamese.xml │ │ ├── welsh.xml │ │ └── zulu.xml │ ├── nppSetup.nsi │ ├── nsisInclude │ │ ├── autoCompletion.nsh │ │ ├── binariesComponents.nsh │ │ ├── functionList.nsh │ │ ├── globalDef.nsh │ │ ├── langs4Installer.nsh │ │ ├── langs4Npp.nsh │ │ ├── mainSectionFuncs.nsh │ │ ├── themes.nsh │ │ ├── tools.nsh │ │ ├── uninstall.nsh │ │ └── winVer.nsh │ ├── packageAll.bat │ ├── sign-installers.bat │ └── themes │ │ ├── Bespin.xml │ │ ├── Black board.xml │ │ ├── Choco.xml │ │ ├── DansLeRuSH-Dark.xml │ │ ├── DarkModeDefault.xml │ │ ├── Deep Black.xml │ │ ├── Hello Kitty.xml │ │ ├── HotFudgeSundae.xml │ │ ├── Mono Industrial.xml │ │ ├── Monokai.xml │ │ ├── MossyLawn.xml │ │ ├── Navajo.xml │ │ ├── Obsidian.xml │ │ ├── Plastic Code Wrap.xml │ │ ├── Ruby Blue.xml │ │ ├── Solarized-light.xml │ │ ├── Solarized.xml │ │ ├── Twilight.xml │ │ ├── Vibrant Ink.xml │ │ ├── Zenburn.xml │ │ ├── khaki.xml │ │ └── vim Dark Blue.xml ├── misc │ └── chameleon │ │ ├── chameleon-pencil-1000.png │ │ ├── chameleon-pencil-200.png │ │ └── chameleon-pencil.eps ├── scintilla.original.forUpdating │ ├── lexilla545.zip │ ├── scintilla557.zip │ └── scintillaUpdatingWorkFlow.txt ├── src │ ├── CMakeLists.txt │ ├── DarkMode │ │ ├── DarkMode.cpp │ │ ├── DarkMode.h │ │ ├── IatHook.h │ │ └── UAHMenuBar.h │ ├── EncodingMapper.cpp │ ├── EncodingMapper.h │ ├── MISC │ │ ├── Common │ │ │ ├── Common.cpp │ │ │ ├── Common.h │ │ │ ├── FileInterface.cpp │ │ │ ├── FileInterface.h │ │ │ ├── SortLocale.cpp │ │ │ ├── SortLocale.h │ │ │ ├── Sorters.h │ │ │ ├── verifySignedfile.cpp │ │ │ └── verifySignedfile.h │ │ ├── Exception │ │ │ ├── MiniDumper.cpp │ │ │ ├── MiniDumper.h │ │ │ ├── Win32Exception.cpp │ │ │ └── Win32Exception.h │ │ ├── FileNameStringSplitter.h │ │ ├── PluginsManager │ │ │ ├── IDAllocator.h │ │ │ ├── Notepad_plus_msgs.h │ │ │ ├── PluginInterface.h │ │ │ ├── PluginsManager.cpp │ │ │ └── PluginsManager.h │ │ ├── Process │ │ │ ├── Processus.cpp │ │ │ └── Processus.h │ │ ├── RegExt │ │ │ ├── regExtDlg.cpp │ │ │ ├── regExtDlg.h │ │ │ ├── regExtDlg.rc │ │ │ └── regExtDlgRc.h │ │ ├── crc16 │ │ │ └── Crc16.h │ │ ├── md5 │ │ │ ├── md5.h │ │ │ ├── md5Dlgs.cpp │ │ │ ├── md5Dlgs.h │ │ │ ├── md5Dlgs.rc │ │ │ └── md5Dlgs_rc.h │ │ ├── sha1 │ │ │ ├── calc_sha1.cpp │ │ │ ├── calc_sha1.h │ │ │ ├── sha1.cpp │ │ │ └── sha1.h │ │ ├── sha2 │ │ │ ├── sha-256.cpp │ │ │ └── sha-256.h │ │ └── sha512 │ │ │ ├── sha512.cpp │ │ │ └── sha512.h │ ├── Notepad_plus.cpp │ ├── Notepad_plus.h │ ├── Notepad_plus.rc │ ├── Notepad_plus_Window.cpp │ ├── Notepad_plus_Window.h │ ├── NppBigSwitch.cpp │ ├── NppCommands.cpp │ ├── NppDarkMode.cpp │ ├── NppDarkMode.h │ ├── NppIO.cpp │ ├── NppLibsVersionH-generator.bat │ ├── NppNotification.cpp │ ├── Parameters.cpp │ ├── Parameters.h │ ├── ScintillaComponent │ │ ├── AutoCompletion.cpp │ │ ├── AutoCompletion.h │ │ ├── Buffer.cpp │ │ ├── Buffer.h │ │ ├── DocTabView.cpp │ │ ├── DocTabView.h │ │ ├── FindReplaceDlg.cpp │ │ ├── FindReplaceDlg.h │ │ ├── FindReplaceDlg.rc │ │ ├── FindReplaceDlg_rc.h │ │ ├── FunctionCallTip.cpp │ │ ├── FunctionCallTip.h │ │ ├── GoToLineDlg.cpp │ │ ├── GoToLineDlg.h │ │ ├── Printer.cpp │ │ ├── Printer.h │ │ ├── ScintillaCtrls.cpp │ │ ├── ScintillaCtrls.h │ │ ├── ScintillaEditView.cpp │ │ ├── ScintillaEditView.h │ │ ├── ScintillaRef.h │ │ ├── SmartHighlighter.cpp │ │ ├── SmartHighlighter.h │ │ ├── UserDefineDialog.cpp │ │ ├── UserDefineDialog.h │ │ ├── UserDefineDialog.rc │ │ ├── UserDefineLangReference.h │ │ ├── UserDefineResource.h │ │ ├── colors.h │ │ ├── columnEditor.cpp │ │ ├── columnEditor.h │ │ ├── columnEditor.rc │ │ ├── columnEditor_rc.h │ │ ├── xmlMatchedTagsHighlighter.cpp │ │ └── xmlMatchedTagsHighlighter.h │ ├── TinyXml │ │ ├── tinyXmlA │ │ │ ├── tinystrA.cpp │ │ │ ├── tinystrA.h │ │ │ ├── tinyxmlA.cpp │ │ │ ├── tinyxmlA.h │ │ │ ├── tinyxmlerrorA.cpp │ │ │ └── tinyxmlparserA.cpp │ │ ├── tinystr.cpp │ │ ├── tinystr.h │ │ ├── tinyxml.cpp │ │ ├── tinyxml.h │ │ ├── tinyxmlerror.cpp │ │ └── tinyxmlparser.cpp │ ├── Utf8.h │ ├── Utf8_16.cpp │ ├── Utf8_16.h │ ├── WinControls │ │ ├── AboutDlg │ │ │ ├── AboutDlg.cpp │ │ │ ├── AboutDlg.h │ │ │ ├── URLCtrl.cpp │ │ │ └── URLCtrl.h │ │ ├── AnsiCharPanel │ │ │ ├── ListView.cpp │ │ │ ├── ListView.h │ │ │ ├── ansiCharPanel.cpp │ │ │ ├── ansiCharPanel.h │ │ │ ├── ansiCharPanel.rc │ │ │ ├── ansiCharPanel_rc.h │ │ │ ├── asciiListView.cpp │ │ │ └── asciiListView.h │ │ ├── ClipboardHistory │ │ │ ├── clipboardHistoryPanel.cpp │ │ │ ├── clipboardHistoryPanel.h │ │ │ ├── clipboardHistoryPanel.rc │ │ │ └── clipboardHistoryPanel_rc.h │ │ ├── ColourPicker │ │ │ ├── ColourPicker.cpp │ │ │ ├── ColourPicker.h │ │ │ ├── ColourPopup.cpp │ │ │ ├── ColourPopup.h │ │ │ ├── ColourPopup.rc │ │ │ ├── ColourPopupResource.h │ │ │ ├── WordStyleDlg.cpp │ │ │ ├── WordStyleDlg.h │ │ │ ├── WordStyleDlg.rc │ │ │ └── WordStyleDlgRes.h │ │ ├── ContextMenu │ │ │ ├── ContextMenu.cpp │ │ │ └── ContextMenu.h │ │ ├── DockingWnd │ │ │ ├── CloseDown.bmp │ │ │ ├── CloseUp.bmp │ │ │ ├── Docking.h │ │ │ ├── DockingCont.cpp │ │ │ ├── DockingCont.h │ │ │ ├── DockingDlgInterface.h │ │ │ ├── DockingGUIWidget.rc │ │ │ ├── DockingManager.cpp │ │ │ ├── DockingManager.h │ │ │ ├── DockingSplitter.cpp │ │ │ ├── DockingSplitter.h │ │ │ ├── Gripper.cpp │ │ │ ├── Gripper.h │ │ │ └── dockingResource.h │ │ ├── DocumentMap │ │ │ ├── documentMap.cpp │ │ │ ├── documentMap.h │ │ │ ├── documentMap.rc │ │ │ ├── documentMap_rc.h │ │ │ ├── documentSnapshot.cpp │ │ │ ├── documentSnapshot.h │ │ │ ├── documentSnapshot.rc │ │ │ └── documentSnapshot_rc.h │ │ ├── DoubleBuffer │ │ │ ├── DoubleBuffer.cpp │ │ │ └── DoubleBuffer.h │ │ ├── FileBrowser │ │ │ ├── fileBrowser.cpp │ │ │ ├── fileBrowser.h │ │ │ ├── fileBrowser.rc │ │ │ └── fileBrowser_rc.h │ │ ├── FindCharsInRange │ │ │ ├── FindCharsInRange.cpp │ │ │ ├── FindCharsInRange.h │ │ │ ├── findCharsInRange.rc │ │ │ └── findCharsInRange_rc.h │ │ ├── FunctionList │ │ │ ├── functionListPanel.cpp │ │ │ ├── functionListPanel.h │ │ │ ├── functionListPanel.rc │ │ │ ├── functionListPanel_rc.h │ │ │ ├── functionParser.cpp │ │ │ └── functionParser.h │ │ ├── Grid │ │ │ ├── BabyGrid.cpp │ │ │ ├── BabyGrid.h │ │ │ ├── BabyGridWrapper.cpp │ │ │ ├── BabyGridWrapper.h │ │ │ ├── ShortcutMapper.cpp │ │ │ ├── ShortcutMapper.h │ │ │ ├── ShortcutMapper.rc │ │ │ └── ShortcutMapper_rc.h │ │ ├── ImageListSet │ │ │ ├── ImageListSet.cpp │ │ │ └── ImageListSet.h │ │ ├── OpenSaveFileDialog │ │ │ ├── CustomFileDialog.cpp │ │ │ └── CustomFileDialog.h │ │ ├── PluginsAdmin │ │ │ ├── pluginsAdmin.cpp │ │ │ ├── pluginsAdmin.h │ │ │ ├── pluginsAdmin.rc │ │ │ └── pluginsAdminRes.h │ │ ├── Preference │ │ │ ├── preference.rc │ │ │ ├── preferenceDlg.cpp │ │ │ ├── preferenceDlg.h │ │ │ └── preference_rc.h │ │ ├── ProjectPanel │ │ │ ├── ProjectPanel.cpp │ │ │ ├── ProjectPanel.h │ │ │ ├── ProjectPanel.rc │ │ │ └── ProjectPanel_rc.h │ │ ├── ReadDirectoryChanges │ │ │ ├── ReadDirectoryChanges.cpp │ │ │ ├── ReadDirectoryChanges.h │ │ │ ├── ReadDirectoryChangesPrivate.cpp │ │ │ ├── ReadDirectoryChangesPrivate.h │ │ │ ├── ReadFileChanges.cpp │ │ │ ├── ReadFileChanges.h │ │ │ ├── ThreadSafeQueue.h │ │ │ └── targetver.h │ │ ├── SplitterContainer │ │ │ ├── Splitter.cpp │ │ │ ├── Splitter.h │ │ │ ├── SplitterContainer.cpp │ │ │ └── SplitterContainer.h │ │ ├── StaticDialog │ │ │ ├── RunDlg │ │ │ │ ├── RunDlg.cpp │ │ │ │ ├── RunDlg.h │ │ │ │ ├── RunDlg.rc │ │ │ │ └── RunDlg_rc.h │ │ │ ├── StaticDialog.cpp │ │ │ └── StaticDialog.h │ │ ├── StatusBar │ │ │ ├── StatusBar.cpp │ │ │ └── StatusBar.h │ │ ├── TabBar │ │ │ ├── ControlsTab.cpp │ │ │ ├── ControlsTab.h │ │ │ ├── TabBar.cpp │ │ │ └── TabBar.h │ │ ├── TaskList │ │ │ ├── TaskList.cpp │ │ │ ├── TaskList.h │ │ │ ├── TaskListDlg.cpp │ │ │ ├── TaskListDlg.h │ │ │ ├── TaskListDlg.rc │ │ │ └── TaskListDlg_rc.h │ │ ├── ToolBar │ │ │ ├── ToolBar.cpp │ │ │ └── ToolBar.h │ │ ├── ToolTip │ │ │ ├── ToolTip.cpp │ │ │ └── ToolTip.h │ │ ├── TrayIcon │ │ │ ├── trayIconControler.cpp │ │ │ └── trayIconControler.h │ │ ├── TreeView │ │ │ ├── TreeView.cpp │ │ │ └── TreeView.h │ │ ├── VerticalFileSwitcher │ │ │ ├── VerticalFileSwitcher.cpp │ │ │ ├── VerticalFileSwitcher.h │ │ │ ├── VerticalFileSwitcher.rc │ │ │ ├── VerticalFileSwitcherListView.cpp │ │ │ ├── VerticalFileSwitcherListView.h │ │ │ └── VerticalFileSwitcher_rc.h │ │ ├── Window.h │ │ ├── WindowsDlg │ │ │ ├── SizeableDlg.cpp │ │ │ ├── SizeableDlg.h │ │ │ ├── WinMgr.cpp │ │ │ ├── WinMgr.h │ │ │ ├── WinRect.cpp │ │ │ ├── WindowsDlg.cpp │ │ │ ├── WindowsDlg.h │ │ │ ├── WindowsDlg.rc │ │ │ └── WindowsDlgRc.h │ │ └── shortcut │ │ │ ├── RunMacroDlg.cpp │ │ │ ├── RunMacroDlg.h │ │ │ ├── RunMacroDlg.rc │ │ │ ├── RunMacroDlg_rc.h │ │ │ ├── shortcut.cpp │ │ │ ├── shortcut.h │ │ │ ├── shortcut.rc │ │ │ └── shortcutRc.h │ ├── clipboardFormats.h │ ├── config.4zipPackage.xml │ ├── contextMenu.xml │ ├── cursors │ │ ├── drag.cur │ │ ├── drag_interdit.cur │ │ ├── drag_out.cur │ │ └── drag_plus.cur │ ├── dpiAware.manifest │ ├── dpiManager.h │ ├── dpiManagerV2.cpp │ ├── dpiManagerV2.h │ ├── icons │ │ ├── dark │ │ │ ├── about │ │ │ │ └── chameleon.ico │ │ │ ├── panels │ │ │ │ ├── tabbar │ │ │ │ │ ├── asciiPanel.ico │ │ │ │ │ ├── clipboardPanel.ico │ │ │ │ │ ├── docList.ico │ │ │ │ │ ├── docMap.ico │ │ │ │ │ ├── fileBrowser.ico │ │ │ │ │ ├── findResult.ico │ │ │ │ │ ├── functionList.ico │ │ │ │ │ └── projectPanel.ico │ │ │ │ ├── toolbar │ │ │ │ │ ├── fb_expand_all.ico │ │ │ │ │ ├── fb_fold_all.ico │ │ │ │ │ ├── fb_select_current_file.ico │ │ │ │ │ ├── funclstPreferences.ico │ │ │ │ │ ├── funclstReload.ico │ │ │ │ │ └── funclstSort.ico │ │ │ │ └── treeview │ │ │ │ │ ├── fb_root_close.ico │ │ │ │ │ ├── fb_root_open.ico │ │ │ │ │ ├── funcList_leaf.ico │ │ │ │ │ ├── funcList_node.ico │ │ │ │ │ ├── project_file.ico │ │ │ │ │ ├── project_file_invalid.ico │ │ │ │ │ ├── project_folder_close.ico │ │ │ │ │ ├── project_folder_open.ico │ │ │ │ │ ├── project_root.ico │ │ │ │ │ ├── project_work_space.ico │ │ │ │ │ └── project_work_space_dirty.ico │ │ │ ├── tabbar │ │ │ │ ├── closeTabButton.ico │ │ │ │ ├── closeTabButton_hoverIn.ico │ │ │ │ ├── closeTabButton_hoverOnTab.ico │ │ │ │ ├── closeTabButton_push.ico │ │ │ │ ├── empty.ico │ │ │ │ ├── monitoring.ico │ │ │ │ ├── pinTabButton.ico │ │ │ │ ├── pinTabButton_hoverIn.ico │ │ │ │ ├── pinTabButton_pinned.ico │ │ │ │ ├── pinTabButton_pinnedHoverOnTab.ico │ │ │ │ ├── readonly.ico │ │ │ │ ├── readonly_sys.ico │ │ │ │ └── unsaved.ico │ │ │ └── toolbar │ │ │ │ ├── filled │ │ │ │ ├── allChars_off.ico │ │ │ │ ├── close_off.ico │ │ │ │ ├── closeall_off.ico │ │ │ │ ├── copy_dis.ico │ │ │ │ ├── copy_off.ico │ │ │ │ ├── cut_dis.ico │ │ │ │ ├── cut_off.ico │ │ │ │ ├── docList_off.ico │ │ │ │ ├── docMap_off.ico │ │ │ │ ├── fileBrowser_off.ico │ │ │ │ ├── find_off.ico │ │ │ │ ├── findrep_off.ico │ │ │ │ ├── funcList_off.ico │ │ │ │ ├── indentGuide_off.ico │ │ │ │ ├── monitoring_dis.ico │ │ │ │ ├── monitoring_off.ico │ │ │ │ ├── new_off.ico │ │ │ │ ├── open_off.ico │ │ │ │ ├── paste_dis.ico │ │ │ │ ├── paste_off.ico │ │ │ │ ├── playrecord_dis.ico │ │ │ │ ├── playrecord_m_dis.ico │ │ │ │ ├── playrecord_m_off.ico │ │ │ │ ├── playrecord_off.ico │ │ │ │ ├── print_off.ico │ │ │ │ ├── redo_dis.ico │ │ │ │ ├── redo_off.ico │ │ │ │ ├── save_dis.ico │ │ │ │ ├── save_off.ico │ │ │ │ ├── saveall_dis.ico │ │ │ │ ├── saveall_off.ico │ │ │ │ ├── saverecord_dis.ico │ │ │ │ ├── saverecord_off.ico │ │ │ │ ├── startrecord_dis.ico │ │ │ │ ├── startrecord_off.ico │ │ │ │ ├── stoprecord_dis.ico │ │ │ │ ├── stoprecord_off.ico │ │ │ │ ├── syncH_dis.ico │ │ │ │ ├── syncH_off.ico │ │ │ │ ├── syncV_dis.ico │ │ │ │ ├── syncV_off.ico │ │ │ │ ├── udl_off.ico │ │ │ │ ├── undo_dis.ico │ │ │ │ ├── undo_off.ico │ │ │ │ ├── wrap_off.ico │ │ │ │ ├── zoomIn_off.ico │ │ │ │ └── zoomOut_off.ico │ │ │ │ └── regular │ │ │ │ ├── allChars_off.ico │ │ │ │ ├── close_off.ico │ │ │ │ ├── closeall_off.ico │ │ │ │ ├── copy_dis.ico │ │ │ │ ├── copy_off.ico │ │ │ │ ├── cut_dis.ico │ │ │ │ ├── cut_off.ico │ │ │ │ ├── docList_off.ico │ │ │ │ ├── docMap_off.ico │ │ │ │ ├── fileBrowser_off.ico │ │ │ │ ├── find_off.ico │ │ │ │ ├── findrep_off.ico │ │ │ │ ├── funcList_off.ico │ │ │ │ ├── indentGuide_off.ico │ │ │ │ ├── monitoring_dis.ico │ │ │ │ ├── monitoring_off.ico │ │ │ │ ├── new_off.ico │ │ │ │ ├── open_off.ico │ │ │ │ ├── paste_dis.ico │ │ │ │ ├── paste_off.ico │ │ │ │ ├── playrecord_dis.ico │ │ │ │ ├── playrecord_m_dis.ico │ │ │ │ ├── playrecord_m_off.ico │ │ │ │ ├── playrecord_off.ico │ │ │ │ ├── print_off.ico │ │ │ │ ├── redo_dis.ico │ │ │ │ ├── redo_off.ico │ │ │ │ ├── save_dis.ico │ │ │ │ ├── save_off.ico │ │ │ │ ├── saveall_dis.ico │ │ │ │ ├── saveall_off.ico │ │ │ │ ├── saverecord_dis.ico │ │ │ │ ├── saverecord_off.ico │ │ │ │ ├── startrecord_dis.ico │ │ │ │ ├── startrecord_off.ico │ │ │ │ ├── stoprecord_dis.ico │ │ │ │ ├── stoprecord_off.ico │ │ │ │ ├── syncH_dis.ico │ │ │ │ ├── syncH_off.ico │ │ │ │ ├── syncV_dis.ico │ │ │ │ ├── syncV_off.ico │ │ │ │ ├── udl_off.ico │ │ │ │ ├── undo_dis.ico │ │ │ │ ├── undo_off.ico │ │ │ │ ├── wrap_off.ico │ │ │ │ ├── zoomIn_off.ico │ │ │ │ └── zoomOut_off.ico │ │ ├── iconAbsent.ico │ │ ├── incrementalBg.bmp │ │ ├── light │ │ │ ├── panels │ │ │ │ ├── tabbar │ │ │ │ │ ├── asciiPanel.ico │ │ │ │ │ ├── clipboardPanel.ico │ │ │ │ │ ├── docList.ico │ │ │ │ │ ├── docMap.ico │ │ │ │ │ ├── fileBrowser.ico │ │ │ │ │ ├── findResult.ico │ │ │ │ │ ├── functionList.ico │ │ │ │ │ └── projectPanel.ico │ │ │ │ └── treeview │ │ │ │ │ ├── fb_root_close.ico │ │ │ │ │ ├── fb_root_open.ico │ │ │ │ │ ├── funcList_leaf.ico │ │ │ │ │ ├── funcList_node.ico │ │ │ │ │ ├── project_file.ico │ │ │ │ │ ├── project_file_invalid.ico │ │ │ │ │ ├── project_folder_close.ico │ │ │ │ │ ├── project_folder_open.ico │ │ │ │ │ ├── project_root.ico │ │ │ │ │ ├── project_work_space.ico │ │ │ │ │ └── project_work_space_dirty.ico │ │ │ └── toolbar │ │ │ │ ├── filled │ │ │ │ ├── allChars_off.ico │ │ │ │ ├── close_off.ico │ │ │ │ ├── closeall_off.ico │ │ │ │ ├── copy_dis.ico │ │ │ │ ├── copy_off.ico │ │ │ │ ├── cut_dis.ico │ │ │ │ ├── cut_off.ico │ │ │ │ ├── docList_off.ico │ │ │ │ ├── docMap_off.ico │ │ │ │ ├── fileBrowser_off.ico │ │ │ │ ├── find_off.ico │ │ │ │ ├── findrep_off.ico │ │ │ │ ├── funcList_off.ico │ │ │ │ ├── indentGuide_off.ico │ │ │ │ ├── monitoring_dis.ico │ │ │ │ ├── monitoring_off.ico │ │ │ │ ├── new_off.ico │ │ │ │ ├── open_off.ico │ │ │ │ ├── paste_dis.ico │ │ │ │ ├── paste_off.ico │ │ │ │ ├── playrecord_dis.ico │ │ │ │ ├── playrecord_m_dis.ico │ │ │ │ ├── playrecord_m_off.ico │ │ │ │ ├── playrecord_off.ico │ │ │ │ ├── print_off.ico │ │ │ │ ├── redo_dis.ico │ │ │ │ ├── redo_off.ico │ │ │ │ ├── save_dis.ico │ │ │ │ ├── save_off.ico │ │ │ │ ├── saveall_dis.ico │ │ │ │ ├── saveall_off.ico │ │ │ │ ├── saverecord_dis.ico │ │ │ │ ├── saverecord_off.ico │ │ │ │ ├── startrecord_dis.ico │ │ │ │ ├── startrecord_off.ico │ │ │ │ ├── stoprecord_dis.ico │ │ │ │ ├── stoprecord_off.ico │ │ │ │ ├── syncH_dis.ico │ │ │ │ ├── syncH_off.ico │ │ │ │ ├── syncV_dis.ico │ │ │ │ ├── syncV_off.ico │ │ │ │ ├── udl_off.ico │ │ │ │ ├── undo_dis.ico │ │ │ │ ├── undo_off.ico │ │ │ │ ├── wrap_off.ico │ │ │ │ ├── zoomIn_off.ico │ │ │ │ └── zoomOut_off.ico │ │ │ │ └── regular │ │ │ │ ├── allChars_off.ico │ │ │ │ ├── close_off.ico │ │ │ │ ├── closeall_off.ico │ │ │ │ ├── copy_dis.ico │ │ │ │ ├── copy_off.ico │ │ │ │ ├── cut_dis.ico │ │ │ │ ├── cut_off.ico │ │ │ │ ├── docList_off.ico │ │ │ │ ├── docMap_off.ico │ │ │ │ ├── fileBrowser_off.ico │ │ │ │ ├── find_off.ico │ │ │ │ ├── findrep_off.ico │ │ │ │ ├── funcList_off.ico │ │ │ │ ├── indentGuide_off.ico │ │ │ │ ├── monitoring_dis.ico │ │ │ │ ├── monitoring_off.ico │ │ │ │ ├── new_off.ico │ │ │ │ ├── open_off.ico │ │ │ │ ├── paste_dis.ico │ │ │ │ ├── paste_off.ico │ │ │ │ ├── playrecord_dis.ico │ │ │ │ ├── playrecord_m_dis.ico │ │ │ │ ├── playrecord_m_off.ico │ │ │ │ ├── playrecord_off.ico │ │ │ │ ├── print_off.ico │ │ │ │ ├── redo_dis.ico │ │ │ │ ├── redo_off.ico │ │ │ │ ├── save_dis.ico │ │ │ │ ├── save_off.ico │ │ │ │ ├── saveall_dis.ico │ │ │ │ ├── saveall_off.ico │ │ │ │ ├── saverecord_dis.ico │ │ │ │ ├── saverecord_off.ico │ │ │ │ ├── startrecord_dis.ico │ │ │ │ ├── startrecord_off.ico │ │ │ │ ├── stoprecord_dis.ico │ │ │ │ ├── stoprecord_off.ico │ │ │ │ ├── syncH_dis.ico │ │ │ │ ├── syncH_off.ico │ │ │ │ ├── syncV_dis.ico │ │ │ │ ├── syncV_off.ico │ │ │ │ ├── udl_off.ico │ │ │ │ ├── undo_dis.ico │ │ │ │ ├── undo_off.ico │ │ │ │ ├── wrap_off.ico │ │ │ │ ├── zoomIn_off.ico │ │ │ │ └── zoomOut_off.ico │ │ ├── moreOnTooltip.ico │ │ ├── npp.ico │ │ └── standard │ │ │ ├── about │ │ │ ├── chameleon.ico │ │ │ └── withUkraine.ico │ │ │ ├── panels │ │ │ ├── tabbar │ │ │ │ ├── asciiPanel.ico │ │ │ │ ├── clipboardPanel.ico │ │ │ │ ├── docList.ico │ │ │ │ ├── docMap.ico │ │ │ │ ├── fileBrowser.ico │ │ │ │ ├── findResult.ico │ │ │ │ ├── functionList.ico │ │ │ │ └── projectPanel.ico │ │ │ ├── toolbar │ │ │ │ ├── fb_expand_all.ico │ │ │ │ ├── fb_fold_all.ico │ │ │ │ ├── fb_select_current_file.ico │ │ │ │ ├── funclstPreferences.ico │ │ │ │ ├── funclstReload.ico │ │ │ │ └── funclstSort.ico │ │ │ └── treeview │ │ │ │ ├── fb_root_close.ico │ │ │ │ ├── fb_root_open.ico │ │ │ │ ├── funcList_leaf.ico │ │ │ │ ├── funcList_node.ico │ │ │ │ ├── project_file.ico │ │ │ │ ├── project_file_invalid.ico │ │ │ │ ├── project_folder_close.ico │ │ │ │ ├── project_folder_open.ico │ │ │ │ ├── project_root.ico │ │ │ │ ├── project_work_space.ico │ │ │ │ └── project_work_space_dirty.ico │ │ │ ├── tabbar │ │ │ ├── closeTabButton.ico │ │ │ ├── closeTabButton_hoverIn.ico │ │ │ ├── closeTabButton_hoverOnTab.ico │ │ │ ├── closeTabButton_push.ico │ │ │ ├── empty.ico │ │ │ ├── monitoring.ico │ │ │ ├── pinTabButton.ico │ │ │ ├── pinTabButton_hover.ico │ │ │ ├── pinTabButton_pinned.ico │ │ │ ├── pinTabButton_pinnedHover.ico │ │ │ ├── readonly.ico │ │ │ ├── readonly_alt.ico │ │ │ ├── readonly_sys.ico │ │ │ ├── readonly_sys_alt.ico │ │ │ ├── saved.ico │ │ │ ├── saved_alt.ico │ │ │ ├── unsaved.ico │ │ │ └── unsaved_alt.ico │ │ │ └── toolbar │ │ │ ├── allChars.bmp │ │ │ ├── closeAll.bmp │ │ │ ├── closeFile.bmp │ │ │ ├── copy.bmp │ │ │ ├── cut.bmp │ │ │ ├── docList.bmp │ │ │ ├── docMap.bmp │ │ │ ├── fileBrowser.bmp │ │ │ ├── find.bmp │ │ │ ├── findReplace.bmp │ │ │ ├── funcList.bmp │ │ │ ├── indentGuide.bmp │ │ │ ├── monitoring.bmp │ │ │ ├── newFile.bmp │ │ │ ├── openFile.bmp │ │ │ ├── paste.bmp │ │ │ ├── playRecord.bmp │ │ │ ├── playRecord_m.bmp │ │ │ ├── print.bmp │ │ │ ├── redo.bmp │ │ │ ├── saveAll.bmp │ │ │ ├── saveFile.bmp │ │ │ ├── saveRecord.bmp │ │ │ ├── startRecord.bmp │ │ │ ├── stopRecord.bmp │ │ │ ├── syncH.bmp │ │ │ ├── syncV.bmp │ │ │ ├── udl.bmp │ │ │ ├── undo.bmp │ │ │ ├── wrap.bmp │ │ │ ├── zoomIn.bmp │ │ │ └── zoomOut.bmp │ ├── json │ │ └── json.hpp │ ├── keys.h │ ├── langs.model.xml │ ├── lastRecentFileList.cpp │ ├── lastRecentFileList.h │ ├── lesDlgs.cpp │ ├── lesDlgs.h │ ├── localization.cpp │ ├── localization.h │ ├── localizationString.h │ ├── menuCmdID.h │ ├── notepad++.exe.manifest │ ├── resource.h │ ├── rgba_icons.h │ ├── shortcuts.xml │ ├── stylers.model.xml │ ├── tabContextMenu_example.xml │ ├── toolbarButtonsConf_example.xml │ ├── uchardet │ │ ├── Big5Freq.tab │ │ ├── CharDistribution.cpp │ │ ├── CharDistribution.h │ │ ├── EUCKRFreq.tab │ │ ├── EUCTWFreq.tab │ │ ├── GB2312Freq.tab │ │ ├── JISFreq.tab │ │ ├── JpCntx.cpp │ │ ├── JpCntx.h │ │ ├── LangBulgarianModel.cpp │ │ ├── LangCyrillicModel.cpp │ │ ├── LangGreekModel.cpp │ │ ├── LangHebrewModel.cpp │ │ ├── LangHungarianModel.cpp │ │ ├── LangThaiModel.cpp │ │ ├── README.TXT │ │ ├── nsBig5Prober.cpp │ │ ├── nsBig5Prober.h │ │ ├── nsCharSetProber.cpp │ │ ├── nsCharSetProber.h │ │ ├── nsCodingStateMachine.h │ │ ├── nsEUCJPProber.cpp │ │ ├── nsEUCJPProber.h │ │ ├── nsEUCKRProber.cpp │ │ ├── nsEUCKRProber.h │ │ ├── nsEUCTWProber.cpp │ │ ├── nsEUCTWProber.h │ │ ├── nsEscCharsetProber.cpp │ │ ├── nsEscCharsetProber.h │ │ ├── nsEscSM.cpp │ │ ├── nsGB2312Prober.cpp │ │ ├── nsGB2312Prober.h │ │ ├── nsHebrewProber.cpp │ │ ├── nsHebrewProber.h │ │ ├── nsLatin1Prober.cpp │ │ ├── nsLatin1Prober.h │ │ ├── nsMBCSGroupProber.cpp │ │ ├── nsMBCSGroupProber.h │ │ ├── nsMBCSSM.cpp │ │ ├── nsPkgInt.h │ │ ├── nsSBCSGroupProber.cpp │ │ ├── nsSBCSGroupProber.h │ │ ├── nsSBCharSetProber.cpp │ │ ├── nsSBCharSetProber.h │ │ ├── nsSJISProber.cpp │ │ ├── nsSJISProber.h │ │ ├── nsUTF8Prober.cpp │ │ ├── nsUTF8Prober.h │ │ ├── nsUniversalDetector.cpp │ │ ├── nsUniversalDetector.h │ │ ├── nscore.h │ │ ├── prmem.h │ │ ├── uchardet.cpp │ │ └── uchardet.h │ └── winmain.cpp └── visual.net │ ├── notepadPlus.Cpp.props │ ├── notepadPlus.ruleset │ ├── notepadPlus.sln │ ├── notepadPlus.uchardet.targets │ └── notepadPlus.vcxproj ├── README.md ├── SUPPORTED_SYSTEM.md ├── appveyor.yml ├── boostregex ├── AnsiDocumentIterator.h ├── BoostRegExSearch.cxx ├── UTF8DocumentIterator.cxx ├── UTF8DocumentIterator.h ├── boost │ ├── assert │ │ └── source_location.hpp │ ├── config.hpp │ ├── config │ │ ├── abi │ │ │ ├── borland_prefix.hpp │ │ │ ├── borland_suffix.hpp │ │ │ ├── msvc_prefix.hpp │ │ │ └── msvc_suffix.hpp │ │ ├── abi_prefix.hpp │ │ ├── abi_suffix.hpp │ │ ├── assert_cxx03.hpp │ │ ├── assert_cxx11.hpp │ │ ├── assert_cxx14.hpp │ │ ├── assert_cxx17.hpp │ │ ├── assert_cxx20.hpp │ │ ├── assert_cxx23.hpp │ │ ├── assert_cxx98.hpp │ │ ├── auto_link.hpp │ │ ├── compiler │ │ │ ├── borland.hpp │ │ │ ├── clang.hpp │ │ │ ├── clang_version.hpp │ │ │ ├── codegear.hpp │ │ │ ├── comeau.hpp │ │ │ ├── common_edg.hpp │ │ │ ├── compaq_cxx.hpp │ │ │ ├── cray.hpp │ │ │ ├── diab.hpp │ │ │ ├── digitalmars.hpp │ │ │ ├── gcc.hpp │ │ │ ├── gcc_xml.hpp │ │ │ ├── greenhills.hpp │ │ │ ├── hp_acc.hpp │ │ │ ├── intel.hpp │ │ │ ├── kai.hpp │ │ │ ├── metrowerks.hpp │ │ │ ├── mpw.hpp │ │ │ ├── nvcc.hpp │ │ │ ├── pathscale.hpp │ │ │ ├── pgi.hpp │ │ │ ├── sgi_mipspro.hpp │ │ │ ├── sunpro_cc.hpp │ │ │ ├── vacpp.hpp │ │ │ ├── visualc.hpp │ │ │ ├── xlcpp.hpp │ │ │ └── xlcpp_zos.hpp │ │ ├── detail │ │ │ ├── cxx_composite.hpp │ │ │ ├── posix_features.hpp │ │ │ ├── select_compiler_config.hpp │ │ │ ├── select_platform_config.hpp │ │ │ ├── select_stdlib_config.hpp │ │ │ └── suffix.hpp │ │ ├── header_deprecated.hpp │ │ ├── helper_macros.hpp │ │ ├── no_tr1 │ │ │ ├── cmath.hpp │ │ │ ├── complex.hpp │ │ │ ├── functional.hpp │ │ │ ├── memory.hpp │ │ │ └── utility.hpp │ │ ├── platform │ │ │ ├── aix.hpp │ │ │ ├── amigaos.hpp │ │ │ ├── beos.hpp │ │ │ ├── bsd.hpp │ │ │ ├── cloudabi.hpp │ │ │ ├── cray.hpp │ │ │ ├── cygwin.hpp │ │ │ ├── haiku.hpp │ │ │ ├── hpux.hpp │ │ │ ├── irix.hpp │ │ │ ├── linux.hpp │ │ │ ├── macos.hpp │ │ │ ├── qnxnto.hpp │ │ │ ├── solaris.hpp │ │ │ ├── symbian.hpp │ │ │ ├── vms.hpp │ │ │ ├── vxworks.hpp │ │ │ ├── wasm.hpp │ │ │ ├── win32.hpp │ │ │ └── zos.hpp │ │ ├── pragma_message.hpp │ │ ├── requires_threads.hpp │ │ ├── stdlib │ │ │ ├── dinkumware.hpp │ │ │ ├── libcomo.hpp │ │ │ ├── libcpp.hpp │ │ │ ├── libstdcpp3.hpp │ │ │ ├── modena.hpp │ │ │ ├── msl.hpp │ │ │ ├── roguewave.hpp │ │ │ ├── sgi.hpp │ │ │ ├── stlport.hpp │ │ │ ├── vacpp.hpp │ │ │ └── xlcpp_zos.hpp │ │ ├── user.hpp │ │ ├── warning_disable.hpp │ │ └── workaround.hpp │ ├── cstdint.hpp │ ├── exception │ │ ├── all.hpp │ │ ├── current_exception_cast.hpp │ │ ├── detail │ │ │ ├── clone_current_exception.hpp │ │ │ ├── error_info_impl.hpp │ │ │ ├── exception_ptr.hpp │ │ │ ├── is_output_streamable.hpp │ │ │ ├── object_hex_dump.hpp │ │ │ ├── requires_cxx11.hpp │ │ │ ├── shared_ptr.hpp │ │ │ └── type_info.hpp │ │ ├── diagnostic_information.hpp │ │ ├── enable_current_exception.hpp │ │ ├── enable_error_info.hpp │ │ ├── errinfo_api_function.hpp │ │ ├── errinfo_at_line.hpp │ │ ├── errinfo_errno.hpp │ │ ├── errinfo_file_handle.hpp │ │ ├── errinfo_file_name.hpp │ │ ├── errinfo_file_open_mode.hpp │ │ ├── errinfo_nested_exception.hpp │ │ ├── errinfo_type_info_name.hpp │ │ ├── error_info.hpp │ │ ├── exception.hpp │ │ ├── get_error_info.hpp │ │ ├── info.hpp │ │ ├── info_tuple.hpp │ │ ├── to_string.hpp │ │ └── to_string_stub.hpp │ ├── regex.hpp │ ├── regex │ │ ├── concepts.hpp │ │ ├── config.hpp │ │ ├── config │ │ │ ├── borland.hpp │ │ │ └── cwchar.hpp │ │ ├── icu.hpp │ │ ├── mfc.hpp │ │ ├── pattern_except.hpp │ │ ├── pending │ │ │ ├── object_cache.hpp │ │ │ ├── static_mutex.hpp │ │ │ └── unicode_iterator.hpp │ │ ├── regex_traits.hpp │ │ ├── user.hpp │ │ └── v5 │ │ │ ├── basic_regex.hpp │ │ │ ├── basic_regex_creator.hpp │ │ │ ├── basic_regex_parser.hpp │ │ │ ├── c_regex_traits.hpp │ │ │ ├── char_regex_traits.hpp │ │ │ ├── cpp_regex_traits.hpp │ │ │ ├── cregex.hpp │ │ │ ├── error_type.hpp │ │ │ ├── icu.hpp │ │ │ ├── iterator_category.hpp │ │ │ ├── iterator_traits.hpp │ │ │ ├── match_flags.hpp │ │ │ ├── match_results.hpp │ │ │ ├── mem_block_cache.hpp │ │ │ ├── object_cache.hpp │ │ │ ├── pattern_except.hpp │ │ │ ├── perl_matcher.hpp │ │ │ ├── perl_matcher_common.hpp │ │ │ ├── perl_matcher_non_recursive.hpp │ │ │ ├── primary_transform.hpp │ │ │ ├── regbase.hpp │ │ │ ├── regex.hpp │ │ │ ├── regex_format.hpp │ │ │ ├── regex_fwd.hpp │ │ │ ├── regex_grep.hpp │ │ │ ├── regex_iterator.hpp │ │ │ ├── regex_match.hpp │ │ │ ├── regex_merge.hpp │ │ │ ├── regex_raw_buffer.hpp │ │ │ ├── regex_replace.hpp │ │ │ ├── regex_search.hpp │ │ │ ├── regex_split.hpp │ │ │ ├── regex_token_iterator.hpp │ │ │ ├── regex_traits.hpp │ │ │ ├── regex_traits_defaults.hpp │ │ │ ├── regex_workaround.hpp │ │ │ ├── states.hpp │ │ │ ├── sub_match.hpp │ │ │ ├── syntax_type.hpp │ │ │ ├── u32regex_iterator.hpp │ │ │ ├── u32regex_token_iterator.hpp │ │ │ ├── unicode_iterator.hpp │ │ │ └── w32_regex_traits.hpp │ ├── regex_fwd.hpp │ ├── throw_exception.hpp │ └── version.hpp ├── nppSpecifics.mak └── nppSpecifics_mingw.mak ├── 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 ├── bin │ └── empty.txt ├── 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 │ ├── 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 │ ├── LexTOML.cxx │ ├── LexTeX.cxx │ ├── LexTroff.cxx │ ├── LexTxt2tags.cxx │ ├── LexUser.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 ├── nppGpgPub.asc ├── nppRoot.crt └── scintilla ├── .editorconfig ├── CONTRIBUTING ├── License.txt ├── README ├── bin └── empty.txt ├── 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 │ ├── ScintillaTest_Prefix.pch │ ├── 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 ├── 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 ├── 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 /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true 2 | -------------------------------------------------------------------------------- /PowerEditor/Test/FunctionList/ada/unitTest.expected.result: -------------------------------------------------------------------------------- 1 | {"leaves":["BiSeqOut","Get_Idle","Get_State","Update","Int32_To_Byte_Array","Int8_To_U8","Int32toInt8TwosComplement (value : Vt.Int32)","AproxU8 (n : Vt.U8; x : Vt.U8)","Read_I32 (Register : Vt.Address_Range)"],"root":"unitTest"} -------------------------------------------------------------------------------- /PowerEditor/Test/FunctionList/asm/unitTest.expected.result: -------------------------------------------------------------------------------- 1 | {"leaves":["dst","src","dst","src","dest_misaligned","find_end_of_dest_string_loop","start_byte_3","start_byte_2","start_byte_1","start_byte_0","copy_start","src_misaligned","main_loop","main_loop_entrance","byte_3","byte_2","byte_1","byte_0"],"root":"unitTest"} -------------------------------------------------------------------------------- /PowerEditor/Test/FunctionList/autoit/unitTest.expected.result: -------------------------------------------------------------------------------- 1 | {"leaves":["logoff","cancel","GUIExit"],"root":"unitTest"} -------------------------------------------------------------------------------- /PowerEditor/Test/FunctionList/bash/unitTest.expected.result: -------------------------------------------------------------------------------- 1 | {"leaves":["setenv","action_needed","canonicalize_path","make_module","db2_name","versioned_copy"],"root":"unitTest"} -------------------------------------------------------------------------------- /PowerEditor/Test/FunctionList/batch/unitTest.expected.result: -------------------------------------------------------------------------------- 1 | {"leaves":["compilesettingserror","compilesettingsfound","failed","failed2"],"root":"unitTest"} -------------------------------------------------------------------------------- /PowerEditor/Test/FunctionList/c/unitTest.expected.result: -------------------------------------------------------------------------------- 1 | {"leaves":["quat_from_euler(const euler *in_euler)","euler_from_quat(const quaternion *in_quat)","test()","main()"],"root":"unitTest"} -------------------------------------------------------------------------------- /PowerEditor/Test/FunctionList/cs/unitTest.expected.result: -------------------------------------------------------------------------------- 1 | {"leaves":["ConfigureAuth"],"root":"unitTest"} -------------------------------------------------------------------------------- /PowerEditor/Test/FunctionList/fortran/unitTest.expected.result: -------------------------------------------------------------------------------- 1 | {"leaves":["setTime","getTime","printTime","PredictTime","PrintTimeSecondsHoursDays"],"root":"unitTest"} -------------------------------------------------------------------------------- /PowerEditor/Test/FunctionList/fortran77/unitTest.expected.result: -------------------------------------------------------------------------------- 1 | {"leaves":["printtext"],"root":"unitTest"} -------------------------------------------------------------------------------- /PowerEditor/Test/FunctionList/fortran77/unittest: -------------------------------------------------------------------------------- 1 | program hello_world3 2 | implicit none 3 | character*32 text 4 | c 5 | text = 'Hello World' 6 | c 7 | call printtext(text) 8 | 9 | end 10 | 11 | subroutine printtext(tekst) 12 | implicit none 13 | character*32 tekst 14 | c 15 | write (*,*) tekst 16 | c 17 | end 18 | -------------------------------------------------------------------------------- /PowerEditor/Test/FunctionList/gdscript/unitTest.expected.result: -------------------------------------------------------------------------------- 1 | {"leaves":["my_func(arg1 : int = sin(1), arg2 : String = \"\") -> void","some_function(param1, param2, param3)","something(p1, p2)","other_something(p1, p2)","_init()"],"nodes":[{"leaves":["inner_function()","my_func(arg1 : int = sin(1), arg2 : String = \"\") -> void"],"name":"Something"},{"leaves":["_init()","_randomize()"],"name":"fish"}],"root":"unitTest"} -------------------------------------------------------------------------------- /PowerEditor/Test/FunctionList/haskell/unitTest.expected.result: -------------------------------------------------------------------------------- 1 | {"leaves":["main","getAllUsernames","getAllUserIds","getUsernameById","sql"],"root":"unitTest"} -------------------------------------------------------------------------------- /PowerEditor/Test/FunctionList/hollywood/unitTest.expected.result: -------------------------------------------------------------------------------- 1 | {"leaves":["p_CheckPic","p_ChooseFX","p_TOFunc","p_SyncedRestart","p_MainLoop","p_Start16FX","p_Init","p_EventFunc"],"root":"unitTest"} -------------------------------------------------------------------------------- /PowerEditor/Test/FunctionList/ini/unitTest.expected.result: -------------------------------------------------------------------------------- 1 | {"leaves":["Flow","BootEntries","BootManager","OldOS","RecoveryPartition","Quarantine.WinOld","Quarantine.NewPaths","Profiles"],"root":"unitTest"} -------------------------------------------------------------------------------- /PowerEditor/Test/FunctionList/inno/unitTest.expected.result: -------------------------------------------------------------------------------- 1 | {"leaves":["Setup","Tasks","Files","Icons","Run","CustomMessages"],"root":"unitTest"} -------------------------------------------------------------------------------- /PowerEditor/Test/FunctionList/java/unitTest.expected.result: -------------------------------------------------------------------------------- 1 | {"nodes":[{"leaves":["encodeMessage","decodeMessage"],"name":"zipB64"}],"root":"unitTest"} -------------------------------------------------------------------------------- /PowerEditor/Test/FunctionList/javascript/unitTest.expected.result: -------------------------------------------------------------------------------- 1 | {"leaves":["extractKeywords","convertBasicMarkup","function","function","function","function","defineModels","slugGenerator","slugGenerator","validatePresenceOf","function","function","function","function","function","function"],"nodes":[{"leaves":["constructor","age"],"name":"Car"}],"root":"unitTest"} -------------------------------------------------------------------------------- /PowerEditor/Test/FunctionList/latex/unitTest.expected.result: -------------------------------------------------------------------------------- 1 | {"leaves":["\\begin{document}","\\section*{Notes for My Paper}","\\subsection*{How to handle topicalization}","\\begin{tabular}[t]{cccc}","\\subsection*{Mood}"],"root":"unitTest"} -------------------------------------------------------------------------------- /PowerEditor/Test/FunctionList/lua/unitTest.expected.result: -------------------------------------------------------------------------------- 1 | {"leaves":["createDir"],"nodes":[{"leaves":["packet","draw"],"name":"tap"}],"root":"unitTest"} -------------------------------------------------------------------------------- /PowerEditor/Test/FunctionList/perl/unitTest.expected.result: -------------------------------------------------------------------------------- 1 | {"leaves":["MakeTag","PackageName","SubName","VarNames","functionNoParentheses"],"root":"unitTest"} -------------------------------------------------------------------------------- /PowerEditor/Test/FunctionList/php/unitTest.expected.result: -------------------------------------------------------------------------------- 1 | {"leaves":["for123()","stringContainAsterisk_test1()","stringContainAsterisk_test2()"],"nodes":[{"leaves":["GetTypeGrille","GetGrilleJSON","CleanStr","GetJavascriptMajax"],"name":"PageGrille"},{"leaves":["main","transactionNotification","authorizationNotification","preApprovalNotification","printLog"],"name":"NotificationListener"}],"root":"unitTest"} -------------------------------------------------------------------------------- /PowerEditor/Test/FunctionList/powershell/unitTest.expected.result: -------------------------------------------------------------------------------- 1 | {"leaves":["Clear-Host","_TabExpansionPath","UnquoteString","Get-Interface","Get-VSService","Get-VSComponentModel","TabExpansion","prompt"],"root":"unitTest"} -------------------------------------------------------------------------------- /PowerEditor/Test/FunctionList/python/baddeftest/unitTest.expected.result: -------------------------------------------------------------------------------- 1 | {"leaves":["invisible_function1()","invisible_function2()","visible_function()"],"nodes":[{"leaves":["__init__(self)"],"name":"VisibleClass1"},{"leaves":["__init__(self)"],"name":"VisibleClass2"}],"root":"unitTest"} -------------------------------------------------------------------------------- /PowerEditor/Test/FunctionList/python/function_space_test/unitTest: -------------------------------------------------------------------------------- 1 | def func1(a,b): 2 | pass 3 | 4 | def func2(a,b): 5 | pass 6 | 7 | def func3(a,b): 8 | pass 9 | 10 | def func4(a,b): 11 | pass 12 | -------------------------------------------------------------------------------- /PowerEditor/Test/FunctionList/python/function_space_test/unitTest.expected.result: -------------------------------------------------------------------------------- 1 | {"leaves":["func1(a,b)","func2(a,b)","func3(a,b)","func4(a,b)"],"root":"unitTest"} -------------------------------------------------------------------------------- /PowerEditor/Test/FunctionList/python/function_space_test/unitTest.result.json: -------------------------------------------------------------------------------- 1 | {"leaves":["func1(a,b)","func2(a,b)","func3(a,b)","func4(a,b)"],"root":"unitTest"} -------------------------------------------------------------------------------- /PowerEditor/Test/FunctionList/raku/unitTest.expected.result: -------------------------------------------------------------------------------- 1 | {"leaves":["MakeTag","PackageName","SubName","VarNames","functionNoParentheses"],"root":"unitTest"} -------------------------------------------------------------------------------- /PowerEditor/Test/FunctionList/ruby/unitTest.expected.result: -------------------------------------------------------------------------------- 1 | {"leaves":["print_header","get_position","prompt"],"root":"unitTest"} -------------------------------------------------------------------------------- /PowerEditor/Test/FunctionList/rust/unitTest.expected.result: -------------------------------------------------------------------------------- 1 | {"leaves":["main","is_divisible_by","fizzbuzz","fizzbuzz_to","async_example","const_example","foo","unsafe_example","new_i32","new_i32_stdcall","regular_example","unsafe_example","generic_example","generic_example2"],"root":"unitTest"} -------------------------------------------------------------------------------- /PowerEditor/Test/FunctionList/sas/unitTest.expected.result: -------------------------------------------------------------------------------- 1 | {"leaves":["%macro printz","function SharedBday"],"root":"unitTest"} -------------------------------------------------------------------------------- /PowerEditor/Test/FunctionList/tex/unitTest.expected.result: -------------------------------------------------------------------------------- 1 | {"leaves":["\\begin{document}","\\section*{Notes for My Paper}","\\subsection*{How to handle topicalization}","\\begin{tabular}[t]{cccc}","\\subsection*{Mood}"],"root":"unitTest"} -------------------------------------------------------------------------------- /PowerEditor/Test/FunctionList/toml/unitTest.expected.result: -------------------------------------------------------------------------------- 1 | {"leaves":["owner","database","servers","servers.alpha","servers.beta","servers.gamma","servers_underscore","servers.\"double-quot\"","servers.'single-quot'","clients","clients-2nd-group"],"root":"unitTest"} -------------------------------------------------------------------------------- /PowerEditor/Test/FunctionList/typescript/unitTest.expected.result: -------------------------------------------------------------------------------- 1 | {"leaves":["extractKeywords","convertBasicMarkup","function","function","function","function","defineModels","slugGenerator","slugGenerator","validatePresenceOf","function","function","function","function","function","function"],"root":"unitTest"} -------------------------------------------------------------------------------- /PowerEditor/Test/FunctionList/vb/unitTest.expected.result: -------------------------------------------------------------------------------- 1 | {"leaves":["Main"],"root":"unitTest"} 2 | -------------------------------------------------------------------------------- /PowerEditor/Test/FunctionList/vhdl/unitTest.expected.result: -------------------------------------------------------------------------------- 1 | {"leaves":["entity ent1 is","architecture rtl of ent1 is","\tcomponent compo1 is"," component reset_controller is ","proc1: process (reset_reset_n, clk_clk)"," block1: block is","comp_per_entity : entity work.doing_so port map ( Reset_s "],"root":"unitTest"} 2 | -------------------------------------------------------------------------------- /PowerEditor/Test/UrlDetection/plugins/Config/startup.lua: -------------------------------------------------------------------------------- 1 | -- Startup script for URL detection verification test 2 | endNppAfterUrlTest = 1 3 | local nppDir = npp:GetNppDirectory() 4 | local verifyUrlDetection = loadfile(nppDir .."\\" .. "..\\Test\\UrlDetection\\verifyUrlDetection.lua") 5 | pcall(verifyUrlDetection) 6 | 7 | -------------------------------------------------------------------------------- /PowerEditor/Test/UrlDetection/plugins/LuaScript/Lua.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/Test/UrlDetection/plugins/LuaScript/Lua.dll -------------------------------------------------------------------------------- /PowerEditor/Test/UrlDetection/plugins/LuaScript/LuaScript.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/Test/UrlDetection/plugins/LuaScript/LuaScript.dll -------------------------------------------------------------------------------- /PowerEditor/Test/UrlDetection/verifyUrlDetection_1b: -------------------------------------------------------------------------------- 1 | === URLs which can be handled better === 2 | 3 | International characters directly before URL: 4 | 5 | u ähttp://test.com u 6 | m 0000000000000000 m 7 | 8 | u домhttp://test.com u 9 | m 000000000000000000 m 10 | 11 | -------------------------------------------------------------------------------- /PowerEditor/Test/UrlDetection/verifyUrlDetection_1b.expected.result: -------------------------------------------------------------------------------- 1 | KO u ähttp://test.com u 2 | ok m 0000000000000000 m 3 | ko m 0111111111111111 m 4 | KO u домhttp://test.com u 5 | ok m 000000000000000000 m 6 | ko m 000111111111111111 m 7 | -------------------------------------------------------------------------------- /PowerEditor/bin/doLocalConf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/bin/doLocalConf.xml -------------------------------------------------------------------------------- /PowerEditor/bin/nppLogNulContentCorruptionIssue.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/bin/nppLogNulContentCorruptionIssue.xml -------------------------------------------------------------------------------- /PowerEditor/gcc/gcc-fixes.h: -------------------------------------------------------------------------------- 1 | // this file contains fixes needed for Notepad++ to be built by GCC 2 | // the makefile automatically includes this file 3 | 4 | // __try and __except are unknown to GCC, so convert them to something eligible 5 | #define __try try 6 | #define __except(x) catch(...) 7 | 8 | #ifndef PROCESSOR_ARCHITECTURE_ARM64 9 | #define PROCESSOR_ARCHITECTURE_ARM64 12 10 | #endif 11 | -------------------------------------------------------------------------------- /PowerEditor/gcc/manifest.rc: -------------------------------------------------------------------------------- 1 | #include <windows.h> 2 | 3 | CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST "../src/notepad++.exe.manifest" 4 | -------------------------------------------------------------------------------- /PowerEditor/installer/bin/xmlUpdater.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/installer/bin/xmlUpdater.exe -------------------------------------------------------------------------------- /PowerEditor/installer/images/NppDownload.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/installer/images/NppDownload.psd -------------------------------------------------------------------------------- /PowerEditor/installer/images/header.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/installer/images/header.bmp -------------------------------------------------------------------------------- /PowerEditor/installer/images/headerLeft.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/installer/images/headerLeft.bmp -------------------------------------------------------------------------------- /PowerEditor/installer/images/headerLeft_RTL.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/installer/images/headerLeft_RTL.bmp -------------------------------------------------------------------------------- /PowerEditor/installer/images/headerRight.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/installer/images/headerRight.bmp -------------------------------------------------------------------------------- /PowerEditor/installer/images/npp_inst.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/installer/images/npp_inst.ico -------------------------------------------------------------------------------- /PowerEditor/installer/images/splash.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/installer/images/splash.bmp -------------------------------------------------------------------------------- /PowerEditor/installer/images/wizard.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/installer/images/wizard.bmp -------------------------------------------------------------------------------- /PowerEditor/installer/images/wizard_GiletJaune.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/installer/images/wizard_GiletJaune.bmp -------------------------------------------------------------------------------- /PowerEditor/misc/chameleon/chameleon-pencil-1000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/misc/chameleon/chameleon-pencil-1000.png -------------------------------------------------------------------------------- /PowerEditor/misc/chameleon/chameleon-pencil-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/misc/chameleon/chameleon-pencil-200.png -------------------------------------------------------------------------------- /PowerEditor/scintilla.original.forUpdating/lexilla545.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/scintilla.original.forUpdating/lexilla545.zip -------------------------------------------------------------------------------- /PowerEditor/scintilla.original.forUpdating/scintilla557.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/scintilla.original.forUpdating/scintilla557.zip -------------------------------------------------------------------------------- /PowerEditor/src/MISC/sha2/sha-256.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | void calc_sha_256(uint8_t hash[32], const void *input, size_t len); 4 | -------------------------------------------------------------------------------- /PowerEditor/src/WinControls/DockingWnd/CloseDown.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/WinControls/DockingWnd/CloseDown.bmp -------------------------------------------------------------------------------- /PowerEditor/src/WinControls/DockingWnd/CloseUp.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/WinControls/DockingWnd/CloseUp.bmp -------------------------------------------------------------------------------- /PowerEditor/src/WinControls/ReadDirectoryChanges/targetver.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | // Including SDKDDKVer.h defines the highest available Windows platform. 4 | 5 | // If you wish to build your application for a previous Windows platform, include WinSDKVer.h and 6 | // set the _WIN32_WINNT macro to the platform you wish to support before including SDKDDKVer.h. 7 | 8 | #include <sdkddkver.h> 9 | -------------------------------------------------------------------------------- /PowerEditor/src/cursors/drag.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/cursors/drag.cur -------------------------------------------------------------------------------- /PowerEditor/src/cursors/drag_interdit.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/cursors/drag_interdit.cur -------------------------------------------------------------------------------- /PowerEditor/src/cursors/drag_out.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/cursors/drag_out.cur -------------------------------------------------------------------------------- /PowerEditor/src/cursors/drag_plus.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/cursors/drag_plus.cur -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/about/chameleon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/about/chameleon.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/panels/tabbar/asciiPanel.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/panels/tabbar/asciiPanel.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/panels/tabbar/clipboardPanel.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/panels/tabbar/clipboardPanel.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/panels/tabbar/docList.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/panels/tabbar/docList.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/panels/tabbar/docMap.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/panels/tabbar/docMap.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/panels/tabbar/fileBrowser.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/panels/tabbar/fileBrowser.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/panels/tabbar/findResult.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/panels/tabbar/findResult.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/panels/tabbar/functionList.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/panels/tabbar/functionList.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/panels/tabbar/projectPanel.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/panels/tabbar/projectPanel.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/panels/toolbar/fb_expand_all.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/panels/toolbar/fb_expand_all.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/panels/toolbar/fb_fold_all.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/panels/toolbar/fb_fold_all.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/panels/toolbar/fb_select_current_file.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/panels/toolbar/fb_select_current_file.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/panels/toolbar/funclstPreferences.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/panels/toolbar/funclstPreferences.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/panels/toolbar/funclstReload.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/panels/toolbar/funclstReload.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/panels/toolbar/funclstSort.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/panels/toolbar/funclstSort.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/panels/treeview/fb_root_close.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/panels/treeview/fb_root_close.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/panels/treeview/fb_root_open.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/panels/treeview/fb_root_open.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/panels/treeview/funcList_leaf.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/panels/treeview/funcList_leaf.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/panels/treeview/funcList_node.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/panels/treeview/funcList_node.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/panels/treeview/project_file.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/panels/treeview/project_file.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/panels/treeview/project_file_invalid.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/panels/treeview/project_file_invalid.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/panels/treeview/project_folder_close.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/panels/treeview/project_folder_close.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/panels/treeview/project_folder_open.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/panels/treeview/project_folder_open.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/panels/treeview/project_root.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/panels/treeview/project_root.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/panels/treeview/project_work_space.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/panels/treeview/project_work_space.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/panels/treeview/project_work_space_dirty.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/panels/treeview/project_work_space_dirty.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/tabbar/closeTabButton.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/tabbar/closeTabButton.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/tabbar/closeTabButton_hoverIn.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/tabbar/closeTabButton_hoverIn.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/tabbar/closeTabButton_hoverOnTab.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/tabbar/closeTabButton_hoverOnTab.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/tabbar/closeTabButton_push.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/tabbar/closeTabButton_push.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/tabbar/empty.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/tabbar/empty.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/tabbar/monitoring.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/tabbar/monitoring.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/tabbar/pinTabButton.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/tabbar/pinTabButton.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/tabbar/pinTabButton_hoverIn.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/tabbar/pinTabButton_hoverIn.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/tabbar/pinTabButton_pinned.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/tabbar/pinTabButton_pinned.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/tabbar/pinTabButton_pinnedHoverOnTab.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/tabbar/pinTabButton_pinnedHoverOnTab.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/tabbar/readonly.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/tabbar/readonly.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/tabbar/readonly_sys.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/tabbar/readonly_sys.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/tabbar/unsaved.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/tabbar/unsaved.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/filled/allChars_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/filled/allChars_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/filled/close_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/filled/close_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/filled/closeall_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/filled/closeall_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/filled/copy_dis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/filled/copy_dis.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/filled/copy_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/filled/copy_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/filled/cut_dis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/filled/cut_dis.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/filled/cut_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/filled/cut_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/filled/docList_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/filled/docList_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/filled/docMap_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/filled/docMap_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/filled/fileBrowser_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/filled/fileBrowser_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/filled/find_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/filled/find_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/filled/findrep_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/filled/findrep_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/filled/funcList_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/filled/funcList_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/filled/indentGuide_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/filled/indentGuide_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/filled/monitoring_dis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/filled/monitoring_dis.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/filled/monitoring_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/filled/monitoring_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/filled/new_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/filled/new_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/filled/open_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/filled/open_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/filled/paste_dis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/filled/paste_dis.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/filled/paste_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/filled/paste_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/filled/playrecord_dis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/filled/playrecord_dis.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/filled/playrecord_m_dis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/filled/playrecord_m_dis.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/filled/playrecord_m_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/filled/playrecord_m_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/filled/playrecord_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/filled/playrecord_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/filled/print_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/filled/print_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/filled/redo_dis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/filled/redo_dis.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/filled/redo_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/filled/redo_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/filled/save_dis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/filled/save_dis.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/filled/save_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/filled/save_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/filled/saveall_dis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/filled/saveall_dis.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/filled/saveall_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/filled/saveall_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/filled/saverecord_dis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/filled/saverecord_dis.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/filled/saverecord_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/filled/saverecord_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/filled/startrecord_dis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/filled/startrecord_dis.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/filled/startrecord_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/filled/startrecord_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/filled/stoprecord_dis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/filled/stoprecord_dis.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/filled/stoprecord_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/filled/stoprecord_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/filled/syncH_dis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/filled/syncH_dis.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/filled/syncH_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/filled/syncH_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/filled/syncV_dis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/filled/syncV_dis.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/filled/syncV_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/filled/syncV_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/filled/udl_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/filled/udl_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/filled/undo_dis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/filled/undo_dis.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/filled/undo_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/filled/undo_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/filled/wrap_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/filled/wrap_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/filled/zoomIn_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/filled/zoomIn_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/filled/zoomOut_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/filled/zoomOut_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/regular/allChars_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/regular/allChars_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/regular/close_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/regular/close_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/regular/closeall_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/regular/closeall_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/regular/copy_dis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/regular/copy_dis.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/regular/copy_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/regular/copy_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/regular/cut_dis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/regular/cut_dis.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/regular/cut_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/regular/cut_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/regular/docList_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/regular/docList_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/regular/docMap_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/regular/docMap_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/regular/fileBrowser_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/regular/fileBrowser_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/regular/find_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/regular/find_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/regular/findrep_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/regular/findrep_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/regular/funcList_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/regular/funcList_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/regular/indentGuide_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/regular/indentGuide_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/regular/monitoring_dis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/regular/monitoring_dis.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/regular/monitoring_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/regular/monitoring_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/regular/new_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/regular/new_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/regular/open_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/regular/open_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/regular/paste_dis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/regular/paste_dis.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/regular/paste_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/regular/paste_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/regular/playrecord_dis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/regular/playrecord_dis.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/regular/playrecord_m_dis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/regular/playrecord_m_dis.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/regular/playrecord_m_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/regular/playrecord_m_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/regular/playrecord_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/regular/playrecord_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/regular/print_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/regular/print_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/regular/redo_dis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/regular/redo_dis.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/regular/redo_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/regular/redo_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/regular/save_dis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/regular/save_dis.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/regular/save_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/regular/save_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/regular/saveall_dis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/regular/saveall_dis.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/regular/saveall_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/regular/saveall_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/regular/saverecord_dis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/regular/saverecord_dis.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/regular/saverecord_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/regular/saverecord_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/regular/startrecord_dis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/regular/startrecord_dis.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/regular/startrecord_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/regular/startrecord_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/regular/stoprecord_dis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/regular/stoprecord_dis.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/regular/stoprecord_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/regular/stoprecord_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/regular/syncH_dis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/regular/syncH_dis.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/regular/syncH_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/regular/syncH_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/regular/syncV_dis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/regular/syncV_dis.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/regular/syncV_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/regular/syncV_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/regular/udl_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/regular/udl_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/regular/undo_dis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/regular/undo_dis.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/regular/undo_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/regular/undo_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/regular/wrap_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/regular/wrap_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/regular/zoomIn_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/regular/zoomIn_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/dark/toolbar/regular/zoomOut_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/dark/toolbar/regular/zoomOut_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/iconAbsent.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/iconAbsent.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/incrementalBg.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/incrementalBg.bmp -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/panels/tabbar/asciiPanel.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/panels/tabbar/asciiPanel.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/panels/tabbar/clipboardPanel.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/panels/tabbar/clipboardPanel.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/panels/tabbar/docList.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/panels/tabbar/docList.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/panels/tabbar/docMap.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/panels/tabbar/docMap.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/panels/tabbar/fileBrowser.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/panels/tabbar/fileBrowser.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/panels/tabbar/findResult.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/panels/tabbar/findResult.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/panels/tabbar/functionList.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/panels/tabbar/functionList.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/panels/tabbar/projectPanel.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/panels/tabbar/projectPanel.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/panels/treeview/fb_root_close.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/panels/treeview/fb_root_close.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/panels/treeview/fb_root_open.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/panels/treeview/fb_root_open.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/panels/treeview/funcList_leaf.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/panels/treeview/funcList_leaf.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/panels/treeview/funcList_node.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/panels/treeview/funcList_node.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/panels/treeview/project_file.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/panels/treeview/project_file.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/panels/treeview/project_file_invalid.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/panels/treeview/project_file_invalid.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/panels/treeview/project_folder_close.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/panels/treeview/project_folder_close.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/panels/treeview/project_folder_open.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/panels/treeview/project_folder_open.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/panels/treeview/project_root.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/panels/treeview/project_root.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/panels/treeview/project_work_space.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/panels/treeview/project_work_space.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/panels/treeview/project_work_space_dirty.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/panels/treeview/project_work_space_dirty.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/filled/allChars_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/filled/allChars_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/filled/close_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/filled/close_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/filled/closeall_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/filled/closeall_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/filled/copy_dis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/filled/copy_dis.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/filled/copy_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/filled/copy_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/filled/cut_dis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/filled/cut_dis.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/filled/cut_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/filled/cut_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/filled/docList_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/filled/docList_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/filled/docMap_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/filled/docMap_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/filled/fileBrowser_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/filled/fileBrowser_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/filled/find_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/filled/find_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/filled/findrep_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/filled/findrep_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/filled/funcList_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/filled/funcList_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/filled/indentGuide_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/filled/indentGuide_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/filled/monitoring_dis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/filled/monitoring_dis.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/filled/monitoring_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/filled/monitoring_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/filled/new_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/filled/new_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/filled/open_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/filled/open_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/filled/paste_dis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/filled/paste_dis.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/filled/paste_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/filled/paste_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/filled/playrecord_dis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/filled/playrecord_dis.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/filled/playrecord_m_dis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/filled/playrecord_m_dis.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/filled/playrecord_m_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/filled/playrecord_m_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/filled/playrecord_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/filled/playrecord_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/filled/print_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/filled/print_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/filled/redo_dis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/filled/redo_dis.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/filled/redo_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/filled/redo_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/filled/save_dis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/filled/save_dis.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/filled/save_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/filled/save_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/filled/saveall_dis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/filled/saveall_dis.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/filled/saveall_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/filled/saveall_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/filled/saverecord_dis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/filled/saverecord_dis.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/filled/saverecord_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/filled/saverecord_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/filled/startrecord_dis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/filled/startrecord_dis.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/filled/startrecord_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/filled/startrecord_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/filled/stoprecord_dis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/filled/stoprecord_dis.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/filled/stoprecord_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/filled/stoprecord_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/filled/syncH_dis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/filled/syncH_dis.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/filled/syncH_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/filled/syncH_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/filled/syncV_dis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/filled/syncV_dis.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/filled/syncV_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/filled/syncV_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/filled/udl_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/filled/udl_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/filled/undo_dis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/filled/undo_dis.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/filled/undo_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/filled/undo_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/filled/wrap_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/filled/wrap_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/filled/zoomIn_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/filled/zoomIn_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/filled/zoomOut_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/filled/zoomOut_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/regular/allChars_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/regular/allChars_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/regular/close_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/regular/close_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/regular/closeall_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/regular/closeall_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/regular/copy_dis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/regular/copy_dis.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/regular/copy_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/regular/copy_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/regular/cut_dis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/regular/cut_dis.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/regular/cut_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/regular/cut_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/regular/docList_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/regular/docList_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/regular/docMap_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/regular/docMap_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/regular/fileBrowser_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/regular/fileBrowser_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/regular/find_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/regular/find_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/regular/findrep_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/regular/findrep_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/regular/funcList_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/regular/funcList_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/regular/indentGuide_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/regular/indentGuide_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/regular/monitoring_dis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/regular/monitoring_dis.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/regular/monitoring_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/regular/monitoring_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/regular/new_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/regular/new_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/regular/open_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/regular/open_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/regular/paste_dis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/regular/paste_dis.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/regular/paste_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/regular/paste_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/regular/playrecord_dis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/regular/playrecord_dis.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/regular/playrecord_m_dis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/regular/playrecord_m_dis.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/regular/playrecord_m_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/regular/playrecord_m_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/regular/playrecord_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/regular/playrecord_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/regular/print_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/regular/print_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/regular/redo_dis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/regular/redo_dis.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/regular/redo_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/regular/redo_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/regular/save_dis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/regular/save_dis.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/regular/save_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/regular/save_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/regular/saveall_dis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/regular/saveall_dis.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/regular/saveall_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/regular/saveall_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/regular/saverecord_dis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/regular/saverecord_dis.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/regular/saverecord_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/regular/saverecord_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/regular/startrecord_dis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/regular/startrecord_dis.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/regular/startrecord_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/regular/startrecord_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/regular/stoprecord_dis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/regular/stoprecord_dis.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/regular/stoprecord_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/regular/stoprecord_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/regular/syncH_dis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/regular/syncH_dis.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/regular/syncH_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/regular/syncH_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/regular/syncV_dis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/regular/syncV_dis.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/regular/syncV_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/regular/syncV_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/regular/udl_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/regular/udl_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/regular/undo_dis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/regular/undo_dis.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/regular/undo_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/regular/undo_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/regular/wrap_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/regular/wrap_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/regular/zoomIn_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/regular/zoomIn_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/light/toolbar/regular/zoomOut_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/light/toolbar/regular/zoomOut_off.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/moreOnTooltip.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/moreOnTooltip.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/npp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/npp.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/about/chameleon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/about/chameleon.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/about/withUkraine.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/about/withUkraine.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/panels/tabbar/asciiPanel.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/panels/tabbar/asciiPanel.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/panels/tabbar/clipboardPanel.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/panels/tabbar/clipboardPanel.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/panels/tabbar/docList.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/panels/tabbar/docList.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/panels/tabbar/docMap.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/panels/tabbar/docMap.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/panels/tabbar/fileBrowser.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/panels/tabbar/fileBrowser.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/panels/tabbar/findResult.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/panels/tabbar/findResult.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/panels/tabbar/functionList.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/panels/tabbar/functionList.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/panels/tabbar/projectPanel.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/panels/tabbar/projectPanel.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/panels/toolbar/fb_expand_all.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/panels/toolbar/fb_expand_all.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/panels/toolbar/fb_fold_all.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/panels/toolbar/fb_fold_all.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/panels/toolbar/fb_select_current_file.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/panels/toolbar/fb_select_current_file.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/panels/toolbar/funclstPreferences.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/panels/toolbar/funclstPreferences.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/panels/toolbar/funclstReload.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/panels/toolbar/funclstReload.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/panels/toolbar/funclstSort.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/panels/toolbar/funclstSort.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/panels/treeview/fb_root_close.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/panels/treeview/fb_root_close.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/panels/treeview/fb_root_open.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/panels/treeview/fb_root_open.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/panels/treeview/funcList_leaf.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/panels/treeview/funcList_leaf.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/panels/treeview/funcList_node.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/panels/treeview/funcList_node.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/panels/treeview/project_file.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/panels/treeview/project_file.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/panels/treeview/project_file_invalid.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/panels/treeview/project_file_invalid.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/panels/treeview/project_folder_close.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/panels/treeview/project_folder_close.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/panels/treeview/project_folder_open.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/panels/treeview/project_folder_open.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/panels/treeview/project_root.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/panels/treeview/project_root.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/panels/treeview/project_work_space.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/panels/treeview/project_work_space.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/panels/treeview/project_work_space_dirty.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/panels/treeview/project_work_space_dirty.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/tabbar/closeTabButton.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/tabbar/closeTabButton.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/tabbar/closeTabButton_hoverIn.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/tabbar/closeTabButton_hoverIn.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/tabbar/closeTabButton_hoverOnTab.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/tabbar/closeTabButton_hoverOnTab.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/tabbar/closeTabButton_push.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/tabbar/closeTabButton_push.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/tabbar/empty.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/tabbar/empty.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/tabbar/monitoring.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/tabbar/monitoring.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/tabbar/pinTabButton.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/tabbar/pinTabButton.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/tabbar/pinTabButton_hover.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/tabbar/pinTabButton_hover.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/tabbar/pinTabButton_pinned.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/tabbar/pinTabButton_pinned.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/tabbar/pinTabButton_pinnedHover.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/tabbar/pinTabButton_pinnedHover.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/tabbar/readonly.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/tabbar/readonly.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/tabbar/readonly_alt.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/tabbar/readonly_alt.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/tabbar/readonly_sys.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/tabbar/readonly_sys.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/tabbar/readonly_sys_alt.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/tabbar/readonly_sys_alt.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/tabbar/saved.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/tabbar/saved.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/tabbar/saved_alt.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/tabbar/saved_alt.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/tabbar/unsaved.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/tabbar/unsaved.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/tabbar/unsaved_alt.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/tabbar/unsaved_alt.ico -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/toolbar/allChars.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/toolbar/allChars.bmp -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/toolbar/closeAll.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/toolbar/closeAll.bmp -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/toolbar/closeFile.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/toolbar/closeFile.bmp -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/toolbar/copy.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/toolbar/copy.bmp -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/toolbar/cut.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/toolbar/cut.bmp -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/toolbar/docList.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/toolbar/docList.bmp -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/toolbar/docMap.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/toolbar/docMap.bmp -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/toolbar/fileBrowser.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/toolbar/fileBrowser.bmp -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/toolbar/find.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/toolbar/find.bmp -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/toolbar/findReplace.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/toolbar/findReplace.bmp -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/toolbar/funcList.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/toolbar/funcList.bmp -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/toolbar/indentGuide.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/toolbar/indentGuide.bmp -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/toolbar/monitoring.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/toolbar/monitoring.bmp -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/toolbar/newFile.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/toolbar/newFile.bmp -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/toolbar/openFile.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/toolbar/openFile.bmp -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/toolbar/paste.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/toolbar/paste.bmp -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/toolbar/playRecord.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/toolbar/playRecord.bmp -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/toolbar/playRecord_m.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/toolbar/playRecord_m.bmp -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/toolbar/print.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/toolbar/print.bmp -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/toolbar/redo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/toolbar/redo.bmp -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/toolbar/saveAll.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/toolbar/saveAll.bmp -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/toolbar/saveFile.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/toolbar/saveFile.bmp -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/toolbar/saveRecord.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/toolbar/saveRecord.bmp -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/toolbar/startRecord.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/toolbar/startRecord.bmp -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/toolbar/stopRecord.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/toolbar/stopRecord.bmp -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/toolbar/syncH.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/toolbar/syncH.bmp -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/toolbar/syncV.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/toolbar/syncV.bmp -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/toolbar/udl.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/toolbar/udl.bmp -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/toolbar/undo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/toolbar/undo.bmp -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/toolbar/wrap.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/toolbar/wrap.bmp -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/toolbar/zoomIn.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/toolbar/zoomIn.bmp -------------------------------------------------------------------------------- /PowerEditor/src/icons/standard/toolbar/zoomOut.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/PowerEditor/src/icons/standard/toolbar/zoomOut.bmp -------------------------------------------------------------------------------- /boostregex/boost/config/abi/borland_suffix.hpp: -------------------------------------------------------------------------------- 1 | // (C) Copyright John Maddock 2003. 2 | // Use, modification and distribution are subject to the 3 | // Boost Software License, Version 1.0. (See accompanying file 4 | // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 5 | 6 | # pragma option pop 7 | #pragma nopushoptwarn 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /boostregex/boost/config/abi/msvc_suffix.hpp: -------------------------------------------------------------------------------- 1 | // (C) Copyright John Maddock 2003. 2 | // Use, modification and distribution are subject to the 3 | // Boost Software License, Version 1.0. (See accompanying file 4 | // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 5 | 6 | #pragma pack(pop) 7 | 8 | 9 | -------------------------------------------------------------------------------- /lexilla/access/README: -------------------------------------------------------------------------------- 1 | README for access directory. 2 | 3 | LexillaAccess is a module that simplifies using multiple libraries that follow the Lexilla protocol. 4 | 5 | It can be compiled into a Lexilla client application. 6 | 7 | Applications with complex needs can copy the code and customise it to meet their requirements. 8 | 9 | This module is not meant to be compiled into Lexilla. 10 | -------------------------------------------------------------------------------- /lexilla/bin/empty.txt: -------------------------------------------------------------------------------- 1 | This empty files ensures that the directory is created. -------------------------------------------------------------------------------- /lexilla/delbin.bat: -------------------------------------------------------------------------------- 1 | @del /S /Q *.a *.aps *.bsc *.dll *.dsw *.exe *.idb *.ilc *.ild *.ilf *.ilk *.ils *.lib *.map *.ncb *.obj *.o *.opt *.ipdb *.pdb *.plg *.res *.sbr *.tds *.exp *.tlog *.lastbuildstate >NUL: 2 | -------------------------------------------------------------------------------- /lexilla/doc/LexillaLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/lexilla/doc/LexillaLogo.png -------------------------------------------------------------------------------- /lexilla/doc/LexillaLogo2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/lexilla/doc/LexillaLogo2x.png -------------------------------------------------------------------------------- /lexilla/scripts/RunTest.bat: -------------------------------------------------------------------------------- 1 | rem Test lexers 2 | rem build lexilla.dll and TestLexers.exe then run TestLexers.exe 3 | cd ../src 4 | make --jobs=%NUMBER_OF_PROCESSORS% DEBUG=1 5 | cd ../test 6 | make DEBUG=1 7 | make test 8 | -------------------------------------------------------------------------------- /lexilla/scripts/RunTest.sh: -------------------------------------------------------------------------------- 1 | # Test lexers 2 | # build lexilla.so and TestLexers then run TestLexers 3 | JOBS="--jobs=$(getconf _NPROCESSORS_ONLN)" 4 | ( 5 | cd ../src 6 | make "$JOBS" DEBUG=1 7 | ) 8 | ( 9 | cd ../test 10 | make DEBUG=1 11 | make test 12 | ) 13 | -------------------------------------------------------------------------------- /lexilla/src/Lexilla.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | GetLexerCount 3 | GetLexerName 4 | GetLexerFactory 5 | CreateLexer 6 | LexerNameFromID 7 | GetLibraryPropertyNames 8 | SetLibraryProperty 9 | GetNameSpace 10 | -------------------------------------------------------------------------------- /lexilla/src/Lexilla/Lexilla.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="UTF-8"?> 2 | <Workspace 3 | version = "1.0"> 4 | <FileRef 5 | location = "self:Lexilla.xcodeproj"> 6 | </FileRef> 7 | </Workspace> 8 | -------------------------------------------------------------------------------- /lexilla/test/examples/asciidoc/SciTE.properties: -------------------------------------------------------------------------------- 1 | code.page=65001 2 | lexer.*.adoc=asciidoc 3 | fold=1 4 | -------------------------------------------------------------------------------- /lexilla/test/examples/bash/Issue180.bsh: -------------------------------------------------------------------------------- 1 | echo '#39; 2 | echo "quot; 3 | echo "quot; 4 | echo "quot;x"" 5 | echo x#39;\t'y 6 | echo "x#39;\t'y" 7 | echo "x\ty" 8 | -------------------------------------------------------------------------------- /lexilla/test/examples/bash/Issue180.bsh.folded: -------------------------------------------------------------------------------- 1 | 0 400 0 echo '#39; 2 | 0 400 0 echo "quot; 3 | 0 400 0 echo "quot; 4 | 0 400 0 echo "quot;x"" 5 | 0 400 0 echo x#39;\t'y 6 | 0 400 0 echo "x#39;\t'y" 7 | 0 400 0 echo "x\ty" 8 | 0 400 0 -------------------------------------------------------------------------------- /lexilla/test/examples/bash/Issue180.bsh.styled: -------------------------------------------------------------------------------- 1 | {4}echo{0} {6}'#39;{0} 2 | {4}echo{0} {5}"quot;{0} 3 | {4}echo{0} {5}"quot;{0} 4 | {4}echo{0} {5}"quot;{8}x{5}""{0} 5 | {4}echo{0} {8}x{5}#39;\t'{8}y{0} 6 | {4}echo{0} {5}"x#39;\t'y"{0} 7 | {4}echo{0} {5}"x\ty"{0} 8 | -------------------------------------------------------------------------------- /lexilla/test/examples/bash/Issue182.bsh: -------------------------------------------------------------------------------- 1 | if [ -n "$eth" -o -n "$wlan" ]; then 2 | fi 3 | 4 | test $((1 + 1)) -eq 2 && echo yes 5 | [ $((1 + 1)) -eq 2 ] && echo yes 6 | 7 | ls -a --directory 8 | -------------------------------------------------------------------------------- /lexilla/test/examples/bash/Issue182.bsh.folded: -------------------------------------------------------------------------------- 1 | 2 400 0 + if [ -n "$eth" -o -n "$wlan" ]; then 2 | 0 401 0 | fi 3 | 1 400 0 4 | 0 400 0 test $((1 + 1)) -eq 2 && echo yes 5 | 0 400 0 [ $((1 + 1)) -eq 2 ] && echo yes 6 | 1 400 0 7 | 0 400 0 ls -a --directory 8 | 0 400 0 -------------------------------------------------------------------------------- /lexilla/test/examples/bash/Issue182.bsh.styled: -------------------------------------------------------------------------------- 1 | {4}if{0} {7}[{0} {4}-n{0} {5}"{9}$eth{5}"{0} {4}-o{0} {4}-n{0} {5}"{9}$wlan{5}"{0} {7}];{0} {4}then{0} 2 | {4}fi{0} 3 | 4 | {4}test{0} {7}$(({3}1{0} {7}+{0} {3}1{7})){0} {4}-eq{0} {3}2{0} {7}&&{0} {4}echo{0} {8}yes{0} 5 | {7}[{0} {7}$(({3}1{0} {7}+{0} {3}1{7})){0} {4}-eq{0} {3}2{0} {7}]{0} {7}&&{0} {4}echo{0} {8}yes{0} 6 | 7 | {8}ls{0} {8}-a{0} {8}--directory{0} 8 | -------------------------------------------------------------------------------- /lexilla/test/examples/bash/Issue184.bsh: -------------------------------------------------------------------------------- 1 | echo $* 2 | echo $@ 3 | echo $? 4 | echo $- 5 | echo $ 6 | echo $! 7 | echo $_ 8 | echo $% 9 | echo lt; 10 | 11 | ifeth=$(ls /sys/class/net | grep ^"$intf" | grep "$intf"$) 12 | -------------------------------------------------------------------------------- /lexilla/test/examples/bash/Issue184.bsh.folded: -------------------------------------------------------------------------------- 1 | 0 400 0 echo $* 2 | 0 400 0 echo $@ 3 | 0 400 0 echo $? 4 | 0 400 0 echo $- 5 | 0 400 0 echo $ 6 | 0 400 0 echo $! 7 | 0 400 0 echo $_ 8 | 0 400 0 echo $% 9 | 0 400 0 echo lt; 10 | 1 400 0 11 | 0 400 0 ifeth=$(ls /sys/class/net | grep ^"$intf" | grep "$intf"$) 12 | 0 400 0 -------------------------------------------------------------------------------- /lexilla/test/examples/bash/Issue184.bsh.styled: -------------------------------------------------------------------------------- 1 | {4}echo{0} {9}$*{0} 2 | {4}echo{0} {9}$@{0} 3 | {4}echo{0} {9}$?{0} 4 | {4}echo{0} {9}$-{0} 5 | {4}echo{0} {9}${0} 6 | {4}echo{0} {9}$!{0} 7 | {4}echo{0} {9}$_{0} 8 | {4}echo{0} ${7}%{0} 9 | {4}echo{0} ${7}<{0} 10 | 11 | {8}ifeth{7}=$({8}ls{0} {7}/{8}sys{7}/{8}class{7}/{8}net{0} {7}|{0} {8}grep{0} {7}^{5}"{9}$intf{5}"{0} {7}|{0} {8}grep{0} {5}"{9}$intf{5}"{0}${7}){0} 12 | -------------------------------------------------------------------------------- /lexilla/test/examples/bash/Issue184Copy.bsh: -------------------------------------------------------------------------------- 1 | echo $* 2 | echo $@ 3 | echo $? 4 | echo $- 5 | echo $ 6 | echo $! 7 | echo $_ 8 | echo $% 9 | echo lt; 10 | 11 | ifeth=$(ls /sys/class/net | grep ^"$intf" | grep "$intf"$) 12 | -------------------------------------------------------------------------------- /lexilla/test/examples/bash/Issue184Copy.bsh.folded: -------------------------------------------------------------------------------- 1 | 0 400 0 echo $* 2 | 0 400 0 echo $@ 3 | 0 400 0 echo $? 4 | 0 400 0 echo $- 5 | 0 400 0 echo $ 6 | 0 400 0 echo $! 7 | 0 400 0 echo $_ 8 | 0 400 0 echo $% 9 | 0 400 0 echo lt; 10 | 1 400 0 11 | 0 400 0 ifeth=$(ls /sys/class/net | grep ^"$intf" | grep "$intf"$) 12 | 0 400 0 -------------------------------------------------------------------------------- /lexilla/test/examples/bash/continuation.bsh: -------------------------------------------------------------------------------- 1 | # Tests for line continuation. 2 | # Issue #195. 3 | 4 | #backslash1\ 5 | echo 1 6 | #backslash2\\ 7 | echo 2 8 | 9 | if [ 1 ]; then 10 | backslash1=A\ 11 | fi 12 | backslash2=B\\ 13 | fi 14 | 15 | echo $backslash1, $backslash2 16 | -------------------------------------------------------------------------------- /lexilla/test/examples/batch/SciTE.properties: -------------------------------------------------------------------------------- 1 | lexer.*.bat=batch 2 | keywords.*.bat=call defined do echo else errorlevel exist exit for goto if in not set 3 | 4 | -------------------------------------------------------------------------------- /lexilla/test/examples/caml/SciTE.properties: -------------------------------------------------------------------------------- 1 | lexer.*.ml=caml 2 | keywords.*.ml=and xandalso 3 | keywords2.*.ml=None 4 | keywords3.*.ml=char 5 | -------------------------------------------------------------------------------- /lexilla/test/examples/cmake/Bug77_0.cmake: -------------------------------------------------------------------------------- 1 | if(MSVC80) 2 | # 1 3 | elseif(MSVC90) 4 | # 2 5 | elseif(APPLE) 6 | # 3 7 | else() 8 | # 4 9 | endif() 10 | 11 | if(MSVC80) 12 | # 1 13 | elseif(MSVC90) 14 | # 2 15 | endif() 16 | 17 | if(MSVC80) 18 | # 1 19 | else() 20 | # 2 21 | endif() 22 | 23 | if(MSVC80) 24 | # 1 25 | endif() 26 | -------------------------------------------------------------------------------- /lexilla/test/examples/cmake/Bug77_1.cmake: -------------------------------------------------------------------------------- 1 | if(MSVC80) 2 | # 1 3 | elseif(MSVC90) 4 | # 2 5 | elseif(APPLE) 6 | # 3 7 | else() 8 | # 4 9 | endif() 10 | 11 | if(MSVC80) 12 | # 1 13 | elseif(MSVC90) 14 | # 2 15 | endif() 16 | 17 | if(MSVC80) 18 | # 1 19 | else() 20 | # 2 21 | endif() 22 | 23 | if(MSVC80) 24 | # 1 25 | endif() 26 | -------------------------------------------------------------------------------- /lexilla/test/examples/cmake/SciTE.properties: -------------------------------------------------------------------------------- 1 | lexer.*.cmake=cmake 2 | keywords2.*.cmake=MSVC80 MSVC90 APPLE 3 | fold=1 4 | fold.at.else=0 5 | 6 | match Bug77_1.cmake 7 | fold.at.else=1 8 | -------------------------------------------------------------------------------- /lexilla/test/examples/cobol/230.cob: -------------------------------------------------------------------------------- 1 | * Keywords starting with V to be identified and styled 2 | 3 | * in list keywords2 4 | VARIANCE 5 | 6 | * in list keywords3 7 | VARYING 8 | -------------------------------------------------------------------------------- /lexilla/test/examples/cobol/230.cob.folded: -------------------------------------------------------------------------------- 1 | 0 400 0 * Keywords starting with V to be identified and styled 2 | 0 400 0 3 | 0 400 0 * in list keywords2 4 | 0 400 0 VARIANCE 5 | 0 400 0 6 | 0 400 0 * in list keywords3 7 | 0 400 0 VARYING 8 | 0 400 0 -------------------------------------------------------------------------------- /lexilla/test/examples/cobol/230.cob.styled: -------------------------------------------------------------------------------- 1 | {0} {2}* Keywords starting with V to be identified and styled{0} 2 | 3 | {2}* in list keywords2{0} 4 | {16}VARIANCE{0} 5 | 6 | {2}* in list keywords3{0} 7 | {8}VARYING{0} 8 | -------------------------------------------------------------------------------- /lexilla/test/examples/cobol/231.cob: -------------------------------------------------------------------------------- 1 | * Comment preceded by 6 characters to be styled 2 | * Include / to be styled as a comment 3 | 4 | * Comment colored in green 5 | ABCDE * Comment colored in green 6 | ABCDEF* Comment NOT colored in green 7 | / Comment NOT colored in green 8 | ABCDE / Comment NOT colored in green 9 | ABCDEF/ Comment NOT colored in green 10 | -------------------------------------------------------------------------------- /lexilla/test/examples/cobol/SciTE.properties: -------------------------------------------------------------------------------- 1 | lexer.*.cob=COBOL 2 | keywords.*.cob=data 3 | keywords2.*.cob=cancel variance 4 | keywords3.*.cob=remarks varying 5 | -------------------------------------------------------------------------------- /lexilla/test/examples/cpp/130NonAsciiKeyword.cxx: -------------------------------------------------------------------------------- 1 | // coding: utf-8 2 | // All three following symbols should highlight as keywords 3 | cheese 4 | käse 5 | сыр 6 | 7 | // Lookalikes with ASCII so should not highlight: 8 | сыp 9 | cыp 10 | -------------------------------------------------------------------------------- /lexilla/test/examples/cpp/130NonAsciiKeyword.cxx.folded: -------------------------------------------------------------------------------- 1 | 0 400 400 // coding: utf-8 2 | 0 400 400 // All three following symbols should highlight as keywords 3 | 0 400 400 cheese 4 | 0 400 400 käse 5 | 0 400 400 сыр 6 | 1 400 400 7 | 0 400 400 // Lookalikes with ASCII so should not highlight: 8 | 0 400 400 сыp 9 | 0 400 400 cыp 10 | 1 400 400 -------------------------------------------------------------------------------- /lexilla/test/examples/cpp/130NonAsciiKeyword.cxx.styled: -------------------------------------------------------------------------------- 1 | {2}// coding: utf-8 2 | // All three following symbols should highlight as keywords 3 | {5}cheese{0} 4 | {5}käse{0} 5 | {5}сыр{0} 6 | 7 | {2}// Lookalikes with ASCII so should not highlight: 8 | {11}сыp{0} 9 | {11}cыp{0} 10 | -------------------------------------------------------------------------------- /lexilla/test/examples/cpp/149KeywordCase.cxx: -------------------------------------------------------------------------------- 1 | // SCE_C_WORD2 (16) 2 | second 3 | 4 | // SCE_C_IDENTIFIER (11) 5 | Second 6 | 7 | // SCE_C_IDENTIFIER (11) 8 | upper 9 | 10 | // SCE_C_WORD2 (16) 11 | Upper 12 | -------------------------------------------------------------------------------- /lexilla/test/examples/cpp/149KeywordCase.cxx.folded: -------------------------------------------------------------------------------- 1 | 0 400 400 // SCE_C_WORD2 (16) 2 | 0 400 400 second 3 | 1 400 400 4 | 0 400 400 // SCE_C_IDENTIFIER (11) 5 | 0 400 400 Second 6 | 1 400 400 7 | 0 400 400 // SCE_C_IDENTIFIER (11) 8 | 0 400 400 upper 9 | 1 400 400 10 | 0 400 400 // SCE_C_WORD2 (16) 11 | 0 400 400 Upper 12 | 1 400 400 -------------------------------------------------------------------------------- /lexilla/test/examples/cpp/149KeywordCase.cxx.styled: -------------------------------------------------------------------------------- 1 | {2}// SCE_C_WORD2 (16) 2 | {16}second{0} 3 | 4 | {2}// SCE_C_IDENTIFIER (11) 5 | {11}Second{0} 6 | 7 | {2}// SCE_C_IDENTIFIER (11) 8 | {11}upper{0} 9 | 10 | {2}// SCE_C_WORD2 (16) 11 | {16}Upper{0} 12 | -------------------------------------------------------------------------------- /lexilla/test/examples/cpp/Bug2245.cxx: -------------------------------------------------------------------------------- 1 | int i; 2 | #if 1 3 | i=1; 4 | # 5 | i=2; 6 | #else 7 | i=3; 8 | #endif 9 | i=4; 10 | #elif 1 11 | i=5; 12 | #else 13 | i=6; 14 | -------------------------------------------------------------------------------- /lexilla/test/examples/cpp/Bug2245.cxx.folded: -------------------------------------------------------------------------------- 1 | 0 400 400 int i; 2 | 2 400 401 + #if 1 3 | 0 401 401 | i=1; 4 | 0 401 401 | # 5 | 0 401 401 | i=2; 6 | 0 401 401 | #else 7 | 0 401 401 | i=3; 8 | 0 401 400 | #endif 9 | 0 400 400 i=4; 10 | 0 400 400 #elif 1 11 | 0 400 400 i=5; 12 | 0 400 400 #else 13 | 0 400 400 i=6; 14 | 1 400 400 -------------------------------------------------------------------------------- /lexilla/test/examples/cpp/Bug2245.cxx.styled: -------------------------------------------------------------------------------- 1 | {5}int{0} {11}i{10};{0} 2 | {9}#if 1 3 | {11}i{10}={4}1{10};{0} 4 | {9}# 5 | {11}i{10}={4}2{10};{0} 6 | {9}#else 7 | {75}i{74}={68}3{74};{64} 8 | {9}#endif 9 | {11}i{10}={4}4{10};{0} 10 | {9}#elif 1 11 | {11}i{10}={4}5{10};{0} 12 | {9}#else 13 | {11}i{10}={4}6{10};{0} 14 | -------------------------------------------------------------------------------- /lexilla/test/examples/d/SciTE.properties: -------------------------------------------------------------------------------- 1 | lexer.*.d=d 2 | keywords.*.d=keyword1 3 | keywords2.*.d=keyword2 4 | keywords3.*.d= 5 | keywords4.*.d=keyword4 6 | keywords5.*.d=keyword5 7 | keywords6.*.d=keyword6 8 | keywords7.*.d=keyword7 9 | 10 | fold=1 11 | -------------------------------------------------------------------------------- /lexilla/test/examples/diff/SciTE.properties: -------------------------------------------------------------------------------- 1 | lexer.*.diff=diff 2 | fold=1 3 | -------------------------------------------------------------------------------- /lexilla/test/examples/erlang/SciTE.properties: -------------------------------------------------------------------------------- 1 | lexer.*.erl=erlang 2 | keywords.*.erl=let 3 | keywords2.*.erl=atom_to_binary 4 | keywords3.*.erl=-define 5 | keywords4.*.erl=-module 6 | keywords5.*.erl=@todo 7 | keywords6.*.erl=@module 8 | -------------------------------------------------------------------------------- /lexilla/test/examples/errorlist/SciTE.properties: -------------------------------------------------------------------------------- 1 | lexer.*.err=errorlist 2 | lexer.errorlist.value.separate=1 3 | lexer.errorlist.escape.sequences=1 4 | style.errorlist.23=fore:#000000,back:#FFFFFF,$(error.background) 5 | style.errorlist.25=fore:#CF008F,$(font.monospace.small) 6 | -------------------------------------------------------------------------------- /lexilla/test/examples/fortran/SciTE.properties: -------------------------------------------------------------------------------- 1 | lexer.*.f=fortran 2 | keywords.*.f=do end if program 3 | keywords2.*.f=system_clock 4 | keywords3.*.f=doublecomplex 5 | fold=1 6 | fold.compact=1 7 | -------------------------------------------------------------------------------- /lexilla/test/examples/fsharp/Issue56.fs: -------------------------------------------------------------------------------- 1 | // not folded 2 | 3 | // first line in comment fold 4 | // second . . . 5 | // third . . . 6 | namespace Issue56 7 | 8 | open System 9 | 10 | module LineBasedFoldingCheck = 11 | open FSharp.Quotations 12 | open FSharp.Reflection 13 | 14 | () |> ignore 15 | -------------------------------------------------------------------------------- /lexilla/test/examples/gdscript/SciTE.properties: -------------------------------------------------------------------------------- 1 | lexer.*.gd=gdscript 2 | keywords.*.gd=class func else for if extends in pass print return while var 3 | keywords2.*.gd=hilight 4 | fold=1 5 | fold.compact=1 6 | -------------------------------------------------------------------------------- /lexilla/test/examples/gui4cli/SciTE.properties: -------------------------------------------------------------------------------- 1 | lexer.*.gui=gui4cli 2 | fold=1 3 | 4 | #global 5 | keywords.*.gui=G4C WINDOW XBUTTON 6 | #event 7 | keywords2.*.gui=XONCLOSE XONLVDIR XONLOAD 8 | #attribute 9 | keywords3.*.gui=ATTR 10 | #control 11 | keywords4.*.gui=IF ELSE ENDIF GOSUB 12 | #command 13 | keywords5.*.gui=GUIOPEN GUIQUIT INPUT MSGBOX SETWINTITLE 14 | -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/Bug2207.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE html> 2 | <html> 3 | <script> 4 | var example = "<!-- -->"; // closing "-->" is string 5 | var example2 = '<!-- -->'; // closing "-->" is string 6 | </script> 7 | </html> 8 | -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/Bug2207.html.folded: -------------------------------------------------------------------------------- 1 | 0 400 0 <!DOCTYPE html> 2 | 2 400 0 + <html> 3 | 2 401 0 + <script> 4 | 0 402 0 | var example = "<!-- -->"; // closing "-->" is string 5 | 0 402 0 | var example2 = '<!-- -->'; // closing "-->" is string 6 | 0 402 0 | </script> 7 | 0 401 0 | </html> 8 | 0 400 0 -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/Bug2207.html.styled: -------------------------------------------------------------------------------- 1 | {21}<!{22}DOCTYPE{21} {23}html{21}>{0} 2 | {1}<html>{0} 3 | {1}<script>{40} 4 | {41} {47}var{41} {46}example{41} {50}={41} {48}"<!-- -->"{50};{41} {43}// closing "-->" is string{41} 5 | {47}var{41} {46}example2{41} {50}={41} {49}'<!-- -->'{50};{41} {43}// closing "-->" is string{41} 6 | {1}</script>{0} 7 | {1}</html>{0} 8 | -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/Bug2219.html: -------------------------------------------------------------------------------- 1 | <script> 2 | 3 | /** 4 | */ 5 | 6 | </script> 7 | -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/Bug2219.html.folded: -------------------------------------------------------------------------------- 1 | 2 400 0 + <script> 2 | 1 401 0 | 3 | 2 401 0 + /** 4 | 0 402 0 | */ 5 | 1 401 0 | 6 | 0 401 0 | </script> 7 | 0 400 0 -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/Bug2219.html.styled: -------------------------------------------------------------------------------- 1 | {1}<script>{40} 2 | 3 | {44}/** 4 | */{41} 5 | 6 | {1}</script>{0} 7 | -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/Issue192.html: -------------------------------------------------------------------------------- 1 | & 2 | &1 3 | &A 4 | &中 5 | &<br /> 6 | &1<br /> 7 | &A<br /> 8 | &中<br /> 9 | && 10 |  11 | 中 12 | &A;<br /> 13 | <br /> 14 | 中<br /> 15 | & 16 | < 17 | <<br /> 18 | &b.eps; 19 | &b.eps! 20 | &—; 21 | -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/Issue250RegEx.html: -------------------------------------------------------------------------------- 1 | <script> 2 | /a|b/i.test("baby"); 3 | // arrow function 4 | () => /a|b/i.test("baby"); 5 | // Issue 289 6 | /a/g.test('a'); 7 | /a/gm.test('a'); 8 | 'a'.replace(/a/g, 'b'); 9 | 'a'.replace(/a/gm, 'b'); 10 | </script> 11 | -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/Issue272SGML.xml: -------------------------------------------------------------------------------- 1 | <!DOCTYPE root [ 2 | <!ELEMENT root (p)> 3 | <!ELEMENT p (#PCDATA)> 4 | <!-- Example 1 from XML spec 1.0 Appendix D --> 5 | <!ENTITY example "<p>An ampersand (&#38;) may be escaped 6 | numerically (&#38;#38) or with a general entity (&amp;).</p>" > 7 | ]> 8 | <root>&example;</root> 9 | -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/Issue273JavaScript.html: -------------------------------------------------------------------------------- 1 | <script> 2 | var pi/*/=3.1415/*/=3.14; 3 | /* 4 | <?xml> 5 | <!doctype> 6 | */ 7 | /** 8 | <?xml> 9 | <!doctype> 10 | */ 11 | var template = ` 12 | <?xml encoding='${encoding}'> 13 | <!doctype> 14 | `; 15 | /<?xml>/.test('<?xml>'); 16 | /<!doctype>/.test("<!doctype>"); 17 | </script> 18 | -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/Issue288.php: -------------------------------------------------------------------------------- 1 | <? 2 | nl2br("\n); // unterminated string 3 | ?> 4 | ") 5 | -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/Issue288.php.folded: -------------------------------------------------------------------------------- 1 | 2 400 0 + <? 2 | 0 401 0 | nl2br("\n); // unterminated string 3 | 0 401 0 | ?> 4 | 0 401 0 | ") 5 | 0 401 0 | -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/Issue288.php.styled: -------------------------------------------------------------------------------- 1 | {18}<?{118} 2 | {198}nl2br{127}({119}"\n); // unterminated string 3 | ?> 4 | "{127}){118} 5 | -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/Issue47.html: -------------------------------------------------------------------------------- 1 | <script src=""> 2 | // comment 3 | </script> 4 | <script> 5 | { 6 | }; 7 | </script> 8 | -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/Issue47.html.folded: -------------------------------------------------------------------------------- 1 | 2 400 0 + <script src=""> 2 | 0 401 0 | // comment 3 | 0 401 0 | </script> 4 | 2 400 0 + <script> 5 | 2 401 0 + { 6 | 0 402 0 | }; 7 | 0 401 0 | </script> 8 | 0 400 0 -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/Issue47.html.styled: -------------------------------------------------------------------------------- 1 | {1}<script{8} {3}src{8}={6}""{1}>{40} 2 | {43}// comment{41} 3 | {1}</script>{0} 4 | {1}<script>{40} 5 | {50}{{41} 6 | {50}};{41} 7 | {1}</script>{0} 8 | -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/Issue53.html: -------------------------------------------------------------------------------- 1 | <script> 2 | { 3 | /\d{1}\}/.test('{0}') 4 | } 5 | </script> 6 | -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/Issue53.html.folded: -------------------------------------------------------------------------------- 1 | 2 400 0 + <script> 2 | 2 401 0 + { 3 | 0 402 0 | /\d{1}\}/.test('{0}') 4 | 0 402 0 | } 5 | 0 401 0 | </script> 6 | 0 400 0 -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/Issue53.html.styled: -------------------------------------------------------------------------------- 1 | {1}<script>{40} 2 | {50}{{41} 3 | {52}/\d{1}\}/{50}.{46}test{50}({49}'{0}'{50}){41} 4 | {50}}{41} 5 | {1}</script>{0} 6 | -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/apostophe.php: -------------------------------------------------------------------------------- 1 | <?php 2 | # Test that currently fails as comment style not started in a number. 3 | # line-comment 4 | // line-comment 5 | /* comment */ 6 | $foo = 0#comment 7 | $foo = 0//comment 8 | $foo = 0/*'*/; 9 | ?> 10 | 11 | <br /> 12 | -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/comment.html: -------------------------------------------------------------------------------- 1 | <!----><p>1 normal comment</p> 2 | <!-- > and <!--><p>2 valid comment</p> 3 | <!--><p>3 abrupt-closing-of-empty-comment</p> 4 | <!---><p>4 abrupt-closing-of-empty-comment</p> 5 | <!----!><p>5 incorrectly-closed-comment</p> 6 | <!--!> <h1 value="--!><p>6 incorrectly-closed-comment</p> 7 | <!--<!---><p>7 nested-comment</p> 8 | <!--<!---!><p>8 nested-comment</p> 9 | -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/mako.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/lexilla/test/examples/hypertext/mako.html -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/mako.html.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/lexilla/test/examples/hypertext/mako.html.folded -------------------------------------------------------------------------------- /lexilla/test/examples/hypertext/mako.html.styled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/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 | <!-- Folding for Python is incorrect. See #235. --> 14 | <%@language=python%> 15 | <% 16 | import random 17 | x = 'comment' 18 | parse "x=8" 19 | %> 20 | <head> 21 | <body></body> 22 | -------------------------------------------------------------------------------- /lexilla/test/examples/json/SciTE.properties: -------------------------------------------------------------------------------- 1 | lexer.*.json=json 2 | 3 | # JSON keywords 4 | keywords.*.json=false true null 5 | 6 | # JSON-LD keywords 7 | keywords2.*.json=@id @context @type @value @language @container \ 8 | @list @set @reverse @index @base @vocab @graph 9 | 10 | lexer.json.escape.sequence=1 11 | lexer.json.allow.comments=1 12 | fold=1 13 | fold.compact=1 14 | 15 | -------------------------------------------------------------------------------- /lexilla/test/examples/julia/SciTE.properties: -------------------------------------------------------------------------------- 1 | lexer.*.jl=julia 2 | keywords.*.jl=const end for function in where 3 | keywords2.*.jl=Int Number 4 | keywords3.*.jl=true 5 | testlexers.per.line.disable=1 6 | -------------------------------------------------------------------------------- /lexilla/test/examples/latex/Feature1358.tex: -------------------------------------------------------------------------------- 1 | \begin{lstlisting}[language=make] 2 | # If no BOARD is found in the environment, use this default: 3 | BOARD ?= bluepill 4 | 5 | # To use chinese st-link v2 and ch340 dongle with bluepill 6 | ifeq ($(BOARD),bluepill) 7 | STLINK_VERSION=2 8 | PORT_LINUX=/dev/ttyUSB0 9 | endif 10 | \end{lstlisting} 11 | -------------------------------------------------------------------------------- /lexilla/test/examples/latex/Feature1358.tex.styled: -------------------------------------------------------------------------------- 1 | {1}\begin{2}{lstlisting}{8}[language=make] 2 | # If no BOARD is found in the environment, use this default: 3 | BOARD ?= bluepill 4 | 5 | # To use chinese st-link v2 and ch340 dongle with bluepill 6 | ifeq ($(BOARD),bluepill) 7 | STLINK_VERSION=2 8 | PORT_LINUX=/dev/ttyUSB0 9 | endif 10 | {1}\end{5}{lstlisting}{0} 11 | -------------------------------------------------------------------------------- /lexilla/test/examples/latex/SciTE.properties: -------------------------------------------------------------------------------- 1 | lexer.*.tex=latex 2 | -------------------------------------------------------------------------------- /lexilla/test/examples/lua/Bug2205.lua: -------------------------------------------------------------------------------- 1 | print("First") 2 | --[[ Block comment start 3 | print("Second") 4 | --[[ Another block comment ]] 5 | print("Third. If run through an actual program, this will be executed.") 6 | -------------------------------------------------------------------------------- /lexilla/test/examples/lua/Bug2205.lua.folded: -------------------------------------------------------------------------------- 1 | 0 400 0 print("First") 2 | 2 400 0 + --[[ Block comment start 3 | 0 401 0 | print("Second") 4 | 0 401 0 | --[[ Another block comment ]] 5 | 0 400 0 print("Third. If run through an actual program, this will be executed.") 6 | 0 400 0 -------------------------------------------------------------------------------- /lexilla/test/examples/lua/Bug2205.lua.styled: -------------------------------------------------------------------------------- 1 | {13}print{10}({6}"First"{10}){0} 2 | {1}--[[ Block comment start 3 | print("Second") 4 | --[[ Another block comment ]]{0} 5 | {13}print{10}({6}"Third. If run through an actual program, this will be executed."{10}){0} 6 | -------------------------------------------------------------------------------- /lexilla/test/examples/lua/x.lua: -------------------------------------------------------------------------------- 1 | --[[ coding:UTF-8 2 | comment ]] 3 | function first() 4 | ::開:: 5 | -- Comment 6 | func(SCI_ANNOTATIONSETTEXT, 'a', 0, "LINE1") 7 | end 8 | -------------------------------------------------------------------------------- /lexilla/test/examples/lua/x.lua.folded: -------------------------------------------------------------------------------- 1 | 2 400 0 + --[[ coding:UTF-8 2 | 0 401 0 | comment ]] 3 | 2 400 0 + function first() 4 | 0 401 0 | ::開:: 5 | 0 401 0 | -- Comment 6 | 0 401 0 | func(SCI_ANNOTATIONSETTEXT, 'a', 0, "LINE1") 7 | 0 401 0 | end 8 | 0 400 0 -------------------------------------------------------------------------------- /lexilla/test/examples/lua/x.lua.styled: -------------------------------------------------------------------------------- 1 | {1}--[[ coding:UTF-8 2 | comment ]]{0} 3 | {5}function{0} {11}first{10}(){0} 4 | {20}::開::{0} 5 | {2}-- Comment 6 | {0} {11}func{10}({11}SCI_ANNOTATIONSETTEXT{10},{0} {7}'a'{10},{0} {4}0{10},{0} {6}"LINE1"{10}){0} 7 | {5}end{0} 8 | -------------------------------------------------------------------------------- /lexilla/test/examples/makefile/SciTE.properties: -------------------------------------------------------------------------------- 1 | lexer.*.mak=makefile 2 | keywords.*.mak=ifdef 3 | -------------------------------------------------------------------------------- /lexilla/test/examples/markdown/HeaderEOLFill_0.md: -------------------------------------------------------------------------------- 1 | H1 2 | == 3 | 4 | H2 5 | -- 6 | 7 | # H1 8 | 9 | ## H2 10 | 11 | H1 12 | == 13 | H2 14 | -- 15 | # H1 16 | ## H2 17 | ### H3 18 | #### H4 19 | ##### H5 20 | ###### H6 21 | -------------------------------------------------------------------------------- /lexilla/test/examples/markdown/HeaderEOLFill_0.md.styled: -------------------------------------------------------------------------------- 1 | {0}H1{1} 2 | {6}=={1} 3 | 4 | {0}H2{1} 5 | {7}--{1} 6 | 7 | {6}#{0} H1{1} 8 | 9 | {7}##{0} H2{1} 10 | 11 | {0}H1{1} 12 | {6}=={1} 13 | {0}H2{1} 14 | {7}--{1} 15 | {6}#{0} H1{1} 16 | {7}##{0} H2{1} 17 | {8}###{0} H3{1} 18 | {9}####{0} H4{1} 19 | {10}#####{0} H5{1} 20 | {11}######{0} H6{1} 21 | -------------------------------------------------------------------------------- /lexilla/test/examples/markdown/HeaderEOLFill_1.md: -------------------------------------------------------------------------------- 1 | H1 2 | == 3 | 4 | H2 5 | -- 6 | 7 | # H1 8 | 9 | ## H2 10 | 11 | H1 12 | == 13 | H2 14 | -- 15 | # H1 16 | ## H2 17 | ### H3 18 | #### H4 19 | ##### H5 20 | ###### H6 21 | -------------------------------------------------------------------------------- /lexilla/test/examples/markdown/HeaderEOLFill_1.md.styled: -------------------------------------------------------------------------------- 1 | {0}H1{1} 2 | {6}== 3 | {1} 4 | {0}H2{1} 5 | {7}-- 6 | {1} 7 | {6}# H1 8 | {1} 9 | {7}## H2 10 | {1} 11 | {0}H1{1} 12 | {6}== 13 | {0}H2{1} 14 | {7}-- 15 | {6}# H1 16 | {7}## H2 17 | {8}### H3 18 | {9}#### H4 19 | {10}##### H5 20 | {11}###### H6 21 | -------------------------------------------------------------------------------- /lexilla/test/examples/markdown/Issue117.md: -------------------------------------------------------------------------------- 1 | The number: 2 | 3 | 338269006135764734700913562171 4 | 5 | is prime. Therefore: 6 | 7 | 1. the only factors of 338269006135764734700913562171 are: 8 | 9 | 1 10 | 338269006135764734700913562171 11 | 12 | 2. 338269006135764734700913562171 is a natural number 13 | -------------------------------------------------------------------------------- /lexilla/test/examples/markdown/Issue117.md.styled: -------------------------------------------------------------------------------- 1 | {0}The number:{1} 2 | 3 | {0}338269006135764734700913562171{1} 4 | 5 | {0}is prime. Therefore:{1} 6 | 7 | {12} {14}1.{0} the only factors of 338269006135764734700913562171 are:{1} 8 | 9 | {12} {0} 1{1} 10 | {12} {0} 338269006135764734700913562171{1} 11 | 12 | {12} {14}2.{0} 338269006135764734700913562171 is a natural number{1} 13 | -------------------------------------------------------------------------------- /lexilla/test/examples/markdown/SciTE.properties: -------------------------------------------------------------------------------- 1 | code.page=65001 2 | lexer.*.md=markdown 3 | fold=1 4 | 5 | # Tests for the lexer.markdown.header.eolfill property, issue #62 6 | if $(= $(FileNameExt);HeaderEOLFill_0.md) 7 | lexer.markdown.header.eolfill=0 8 | if $(= $(FileNameExt);HeaderEOLFill_1.md) 9 | lexer.markdown.header.eolfill=1 10 | -------------------------------------------------------------------------------- /lexilla/test/examples/matlab/Issue18_EscapeSequence.m.octave: -------------------------------------------------------------------------------- 1 | % Ensure escape sequences still work in octave 2 | % Octave terminates string at 3rd ", Matlab at 4th 3 | i="\" "; % " % 4 | 5 | 6 | % Octave allows string continuation with an escape 7 | b = "multi\ 8 | line" 9 | 10 | % No escape so string ends at line end 11 | c = "multi 12 | line" 13 | 14 | % end 15 | -------------------------------------------------------------------------------- /lexilla/test/examples/matlab/SciTE.properties: -------------------------------------------------------------------------------- 1 | lexer.*.matlab=matlab 2 | keywords.*.matlab=end for global if break case catch classdef continue else elseif function otherwise parfor persistent return spmd switch try while 3 | 4 | lexer.*.octave=octave 5 | keywords.*.octave=end for global if 6 | 7 | fold=1 8 | fold.compact=1 9 | -------------------------------------------------------------------------------- /lexilla/test/examples/mmixal/SciTE.properties: -------------------------------------------------------------------------------- 1 | lexer.*.mms=mmixal 2 | keywords.*.mms=BYTE GETA JMP LOC PREFIX TRAP 3 | keywords2.*.mms=rA 4 | keywords3.*.mms=Fputs StdOut 5 | -------------------------------------------------------------------------------- /lexilla/test/examples/mmixal/x.mms: -------------------------------------------------------------------------------- 1 | % Some example code 2 | 3 | % Set the address of the program initially to 0x100. 4 | LOC #100 5 | 6 | Main GETA $255,string 7 | 8 | TRAP 0,Fputs,StdOut 9 | 10 | TRAP 0,Halt,0 11 | 12 | string BYTE "Hello, world!",#a,0 13 | -------------------------------------------------------------------------------- /lexilla/test/examples/modula/Issue129.m3: -------------------------------------------------------------------------------- 1 | INTERFACE Test; 2 | 3 | TYPE 4 | (* Opaque types *) 5 | HANDLE = ADDRESS; 6 | HMOD(* Module handle *) = HANDLE; 7 | 8 | END Test. 9 | -------------------------------------------------------------------------------- /lexilla/test/examples/modula/Issue129.m3.folded: -------------------------------------------------------------------------------- 1 | 0 400 400 INTERFACE Test; 2 | 1 400 400 3 | 0 400 400 TYPE 4 | 0 400 400 (* Opaque types *) 5 | 0 400 400 HANDLE = ADDRESS; 6 | 0 400 400 HMOD(* Module handle *) = HANDLE; 7 | 1 400 400 8 | 0 400 3ff END Test. 9 | 1 3ff 3ff -------------------------------------------------------------------------------- /lexilla/test/examples/modula/Issue129.m3.styled: -------------------------------------------------------------------------------- 1 | {4}INTERFACE{0} Test{16};{0} 2 | 3 | {4}TYPE{0} 4 | {1}(* Opaque types *){0} 5 | HANDLE {16}={0} {5}ADDRESS{16};{0} 6 | HMOD{1}(* Module handle *){0} {16}={0} HANDLE{16};{0} 7 | 8 | {4}END{0} Test{16}.{0} 9 | -------------------------------------------------------------------------------- /lexilla/test/examples/modula/Issue297.m3: -------------------------------------------------------------------------------- 1 | INTERFACE Issue297; 2 | 3 | TYPE 4 | INTEGER32 = [-16_7fffffff-1 .. 16_7fffffff]; 5 | 6 | END Issue297. 7 | -------------------------------------------------------------------------------- /lexilla/test/examples/modula/Issue297.m3.folded: -------------------------------------------------------------------------------- 1 | 0 400 400 INTERFACE Issue297; 2 | 1 400 400 3 | 0 400 400 TYPE 4 | 0 400 400 INTEGER32 = [-16_7fffffff-1 .. 16_7fffffff]; 5 | 1 400 400 6 | 0 400 3ff END Issue297. 7 | 1 3ff 3ff -------------------------------------------------------------------------------- /lexilla/test/examples/modula/Issue297.m3.styled: -------------------------------------------------------------------------------- 1 | {4}INTERFACE{0} Issue297{16};{0} 2 | 3 | {4}TYPE{0} 4 | INTEGER32 {16}={0} {16}[-{7}16_7fffffff{16}-{6}1{0} {16}..{0} {7}16_7fffffff{16}];{0} 5 | 6 | {4}END{0} Issue297{16}.{0} 7 | -------------------------------------------------------------------------------- /lexilla/test/examples/mssql/Issue87.tsql: -------------------------------------------------------------------------------- 1 | /** 2 | /* 3 | GitHub Issue 87 4 | /* 5 | /****** Object: Table [dbo].[Issue87] Script Date: 04/06/2022 8:07:57 PM ******/ 6 | */ 7 | */ 8 | */ 9 | -------------------------------------------------------------------------------- /lexilla/test/examples/mssql/Issue87.tsql.folded: -------------------------------------------------------------------------------- 1 | 2 400 0 + /** 2 | 0 401 0 | /* 3 | 0 401 0 | GitHub Issue 87 4 | 0 401 0 | /* 5 | 0 401 0 | /****** Object: Table [dbo].[Issue87] Script Date: 04/06/2022 8:07:57 PM ******/ 6 | 0 401 0 | */ 7 | 0 401 0 | */ 8 | 0 401 0 | */ 9 | 0 400 0 -------------------------------------------------------------------------------- /lexilla/test/examples/mssql/Issue87.tsql.styled: -------------------------------------------------------------------------------- 1 | {1}/** 2 | /* 3 | GitHub Issue 87 4 | /* 5 | /****** Object: Table [dbo].[Issue87] Script Date: 04/06/2022 8:07:57 PM ******/ 6 | */ 7 | */ 8 | */{0} 9 | -------------------------------------------------------------------------------- /lexilla/test/examples/mssql/Issue90.tsql: -------------------------------------------------------------------------------- 1 | CREATE TABLE TestTable ( 2 | col 3 | CHAR(3) 4 | ); 5 | -------------------------------------------------------------------------------- /lexilla/test/examples/mssql/Issue90.tsql.folded: -------------------------------------------------------------------------------- 1 | 0 400 0 CREATE TABLE TestTable ( 2 | 0 400 0 col 3 | 0 400 0 CHAR(3) 4 | 0 400 0 ); 5 | 0 400 0 -------------------------------------------------------------------------------- /lexilla/test/examples/mssql/Issue90.tsql.styled: -------------------------------------------------------------------------------- 1 | {9}CREATE{0} {9}TABLE{0} {6}TestTable{15} {5}({0} 2 | {6}col{15} 3 | {10}CHAR{5}({3}3{5}){0} 4 | {5});{0} 5 | -------------------------------------------------------------------------------- /lexilla/test/examples/nim/SciTE.properties: -------------------------------------------------------------------------------- 1 | lexer.*.nim=nim 2 | keywords.*.nim=else end if let proc 3 | -------------------------------------------------------------------------------- /lexilla/test/examples/perl/x.pl: -------------------------------------------------------------------------------- 1 | use strict; 2 | while ( $r ) { 3 | printf ( "Example text \n" ); 4 | sleep 1; 5 | } -------------------------------------------------------------------------------- /lexilla/test/examples/perl/x.pl.folded: -------------------------------------------------------------------------------- 1 | 0 400 400 use strict; 2 | 2 400 401 + while ( $r ) { 3 | 0 401 401 | printf ( "Example text \n" ); 4 | 0 401 401 | sleep 1; 5 | 0 401 0 | } -------------------------------------------------------------------------------- /lexilla/test/examples/perl/x.pl.styled: -------------------------------------------------------------------------------- 1 | {5}use{0} {11}strict{10};{0} 2 | {5}while{0} {10}({0} {12}$r{0} {10}){0} {10}{{0} 3 | {5}printf{0} {10}({0} {6}"Example text \n"{0} {10});{0} 4 | {5}sleep{0} {4}1{10};{0} 5 | {10}} -------------------------------------------------------------------------------- /lexilla/test/examples/powershell/CharacterTruncation.ps1: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # Show problem with character value truncation causing U+0121 'ġ' (LATIN SMALL LETTER G WITH DOT ABOVE) 3 | # to be styled as an operator as static_cast<char>(0x121) = 0x21 == '!' which is an operator 4 | 5 | # Isolate 6 | ġ 7 | 8 | # Continuing from operator 9 | (ġ) 10 | -------------------------------------------------------------------------------- /lexilla/test/examples/powershell/CharacterTruncation.ps1.styled: -------------------------------------------------------------------------------- 1 | {1}# -*- coding: utf-8 -*-{0} 2 | {1}# Show problem with character value truncation causing U+0121 'ġ' (LATIN SMALL LETTER G WITH DOT ABOVE){0} 3 | {1}# to be styled as an operator as static_cast<char>(0x121) = 0x21 == '!' which is an operator{0} 4 | 5 | {1}# Isolate{0} 6 | {7}ġ{0} 7 | 8 | {1}# Continuing from operator{0} 9 | {6}({7}ġ{6}){0} 10 | -------------------------------------------------------------------------------- /lexilla/test/examples/powershell/Pull92.ps1: -------------------------------------------------------------------------------- 1 | <# Tests for PowerShell #> 2 | 3 | <# Backticks should escape in double quoted strings #> 4 | $double_quote_str_esc_1 = "`"XXX`"" 5 | $double_quote_str_esc_2 = "This `"string`" `$useses `r`n Backticks '``'" 6 | 7 | <# Backticks should be ignored in quoted strings #> 8 | $single_quote_str_esc_1 = 'XXX`' 9 | $single_quote_str_esc_2 = 'XXX```' 10 | -------------------------------------------------------------------------------- /lexilla/test/examples/powershell/Pull99Comment.ps1: -------------------------------------------------------------------------------- 1 | # End comment before \r carriage return. 2 | -------------------------------------------------------------------------------- /lexilla/test/examples/powershell/Pull99Comment.ps1.folded: -------------------------------------------------------------------------------- 1 | 0 400 400 # End comment before \r carriage return. 2 | 0 400 0 -------------------------------------------------------------------------------- /lexilla/test/examples/powershell/Pull99Comment.ps1.styled: -------------------------------------------------------------------------------- 1 | {1}# End comment before \r carriage return.{0} 2 | -------------------------------------------------------------------------------- /lexilla/test/examples/powershell/SciTE.properties: -------------------------------------------------------------------------------- 1 | lexer.*.ps1=powershell 2 | fold=1 3 | 4 | keywords.*.ps1=break if else in local 5 | keywords2.*.ps1=write-host write-output 6 | keywords3.*.ps1=cd chdir cat 7 | keywords4.*.ps1=mkdir prompt get-verb 8 | keywords5.*.ps1=lexilla 7z 9 | keywords6.*.ps1=synopsis 10 | -------------------------------------------------------------------------------- /lexilla/test/examples/progress/SciTE.properties: -------------------------------------------------------------------------------- 1 | lexer.*.p=abl 2 | keywords.*.p=display 3 | fold=1 4 | -------------------------------------------------------------------------------- /lexilla/test/examples/props/Issue96Folding.props: -------------------------------------------------------------------------------- 1 | ; comment 2 | [empty section] 3 | [normal section] 4 | @=default 5 | key=value 6 | -------------------------------------------------------------------------------- /lexilla/test/examples/props/Issue96Folding.props.folded: -------------------------------------------------------------------------------- 1 | 0 400 0 ; comment 2 | 0 400 0 [empty section] 3 | 2 400 0 + [normal section] 4 | 0 401 0 | @=default 5 | 0 401 0 | key=value 6 | 0 401 0 | -------------------------------------------------------------------------------- /lexilla/test/examples/props/Issue96Folding.props.styled: -------------------------------------------------------------------------------- 1 | {1}; comment 2 | {2}[empty section] 3 | [normal section] 4 | {4}@{0}=default 5 | {5}key{3}={0}value 6 | -------------------------------------------------------------------------------- /lexilla/test/examples/props/SciTE.properties: -------------------------------------------------------------------------------- 1 | lexer.*.session=props 2 | lexer.*.props=props 3 | fold=1 4 | -------------------------------------------------------------------------------- /lexilla/test/examples/props/example.session: -------------------------------------------------------------------------------- 1 | # Default=0 2 | a 3 | 4 | # Comment=1 5 | 6 | 7 | # Heading=2 8 | [heading] 9 | 10 | 11 | # Assignment=3 12 | = 13 | 14 | # Default Value=4 15 | @ 16 | 17 | # Key=5 18 | key= 19 | 20 | -------------------------------------------------------------------------------- /lexilla/test/examples/props/example.session.styled: -------------------------------------------------------------------------------- 1 | {1}# Default=0 2 | {0}a 3 | 4 | {1}# Comment=1 5 | {0} 6 | 7 | {1}# Heading=2 8 | {2}[heading] 9 | {0} 10 | 11 | {1}# Assignment=3 12 | {3}={0} 13 | 14 | {1}# Default Value=4 15 | {4}@{0} 16 | 17 | {1}# Key=5 18 | {5}key{3}={0} 19 | 20 | -------------------------------------------------------------------------------- /lexilla/test/examples/python/SciTE.properties: -------------------------------------------------------------------------------- 1 | lexer.*.py=python 2 | keywords.*.py=case class def else for if import in match pass print return while with yield 3 | keywords2.*.py=hilight 4 | fold=1 5 | fold.compact=1 6 | -------------------------------------------------------------------------------- /lexilla/test/examples/python/attributes/attrib-decorator.py: -------------------------------------------------------------------------------- 1 | # issue#294 also pointed out that decorator attributes behaved differently 2 | # for left-justified decorators vs indented decorators 3 | 4 | @decorator.attribute 5 | def foo(): 6 | @decorator.attribute 7 | def bar(): 8 | pass 9 | bar() 10 | -------------------------------------------------------------------------------- /lexilla/test/examples/python/f-strings.py: -------------------------------------------------------------------------------- 1 | # Simple nesting 2 | f" { "" } " 3 | 4 | # Multi-line field with comment 5 | f" { 6 | 7 | "" # comment 8 | 9 | } " 10 | 11 | # Single quoted continued with \ 12 | f" \ 13 | " 14 | 15 | # 4 nested f-strings 16 | f'Outer {f"nested {1} {f"nested {2} {f"nested {3} {f"nested {4}"}"}"}"}' 17 | -------------------------------------------------------------------------------- /lexilla/test/examples/python/strings.py: -------------------------------------------------------------------------------- 1 | # Simple raw string 2 | r'' 3 | 4 | # Raw f-string 5 | rf'' 6 | fr'' 7 | 8 | # Raw byte string 9 | rb'' 10 | br'' 11 | 12 | # Raw unicode strings: ur'' is valid in 2.7 (but not in 3) -- always lexed as 13 | # valid; ru'' is never valid 14 | ru'' 15 | ur'' 16 | 17 | -------------------------------------------------------------------------------- /lexilla/test/examples/python/strings.py.styled: -------------------------------------------------------------------------------- 1 | {1}# Simple raw string{0} 2 | {4}r''{0} 3 | 4 | {1}# Raw f-string{0} 5 | {17}rf''{0} 6 | {17}fr''{0} 7 | 8 | {1}# Raw byte string{0} 9 | {4}rb''{0} 10 | {4}br''{0} 11 | 12 | {1}# Raw unicode strings: ur'' is valid in 2.7 (but not in 3) -- always lexed as{0} 13 | {1}# valid; ru'' is never valid{0} 14 | {11}ru{4}''{0} 15 | {4}ur''{0} 16 | 17 | -------------------------------------------------------------------------------- /lexilla/test/examples/r/102Backticks.r: -------------------------------------------------------------------------------- 1 | # ugly code to demonstrate multiline string. 2 | `Hello 3 | World` <- function(x, y, z) { 4 | print(x); 5 | print(y); 6 | print(z); 7 | } 8 | `Hello\nWorld`("Hello\nMoon!", "Hello 9 | Venus", 'Hello\ 10 | Mars'); 11 | -------------------------------------------------------------------------------- /lexilla/test/examples/r/102Backticks.r.folded: -------------------------------------------------------------------------------- 1 | 0 400 400 # ugly code to demonstrate multiline string. 2 | 0 400 400 `Hello 3 | 2 400 401 + World` <- function(x, y, z) { 4 | 0 401 401 | print(x); 5 | 0 401 401 | print(y); 6 | 0 401 401 | print(z); 7 | 0 401 400 | } 8 | 0 400 400 `Hello\nWorld`("Hello\nMoon!", "Hello 9 | 0 400 400 Venus", 'Hello\ 10 | 0 400 400 Mars'); 11 | 0 400 0 -------------------------------------------------------------------------------- /lexilla/test/examples/r/102Backticks.r.styled: -------------------------------------------------------------------------------- 1 | {1}# ugly code to demonstrate multiline string.{0} 2 | {12}`Hello 3 | World`{0} {8}<-{0} {9}function{8}({9}x{0}, {9}y{0}, {9}z{8}){0} {8}{{0} 4 | {9}print{8}({9}x{8}){0}; 5 | {9}print{8}({9}y{8}){0}; 6 | {9}print{8}({9}z{8}){0}; 7 | {8}}{0} 8 | {12}`Hello\nWorld`{8}({6}"Hello\nMoon!"{0}, {6}"Hello 9 | Venus"{0}, {7}'Hello\ 10 | Mars'{8}){0}; 11 | -------------------------------------------------------------------------------- /lexilla/test/examples/r/SciTE.properties: -------------------------------------------------------------------------------- 1 | lexer.*.r=r 2 | keywords.*.r=if 3 | keywords2.*.r=abbreviate 4 | keywords3.*.r=acme 5 | fold=1 6 | fold.compact=1 7 | 8 | match AllStyles.r 9 | lexer.r.escape.sequence=1 10 | -------------------------------------------------------------------------------- /lexilla/test/examples/ruby/225NumberDotMethod.rb: -------------------------------------------------------------------------------- 1 | # Float Literals 2 | 12.34 3 | 1234e-2 4 | 1.234E1 5 | # Range Literals 6 | (1..2) 7 | (2.0..3) 8 | # Method on number 9 | 1.5.ceil 10 | 1ri.abs 11 | 3.times {|i| puts i} 12 | 3. times {|i| puts i} 13 | -------------------------------------------------------------------------------- /lexilla/test/examples/ruby/234HereDoc.rb: -------------------------------------------------------------------------------- 1 | # encoding: utf-8 2 | puts <<A中 3 | #{1+2} 4 | A中 5 | 6 | puts <<中 7 | #{1+2} 8 | 中 9 | 10 | def STDERR::error(x) = puts(x) 11 | def STDERR.error(x) = puts(x) 12 | 13 | STDERR.error <<EOF 14 | STDERR heredoc 15 | EOF 16 | -------------------------------------------------------------------------------- /lexilla/test/examples/ruby/Issue132.rb: -------------------------------------------------------------------------------- 1 | # Bad folding when single character ')' in SCE_RB_STRING_QW #132 2 | %W(#{1 + 1}) 3 | 4 | -------------------------------------------------------------------------------- /lexilla/test/examples/ruby/Issue132.rb.folded: -------------------------------------------------------------------------------- 1 | 0 400 0 # Bad folding when single character ')' in SCE_RB_STRING_QW #132 2 | 0 400 0 %W(#{1 + 1}) 3 | 1 400 0 4 | 0 400 0 -------------------------------------------------------------------------------- /lexilla/test/examples/ruby/Issue132.rb.styled: -------------------------------------------------------------------------------- 1 | {2}# Bad folding when single character ')' in SCE_RB_STRING_QW #132{0} 2 | {28}%W({10}#{{4}1{0} {10}+{0} {4}1{10}}{28}){0} 3 | 4 | -------------------------------------------------------------------------------- /lexilla/test/examples/ruby/Issue135.rb: -------------------------------------------------------------------------------- 1 | a = <<XXX # :nodoc: 2 | heredoc 3 | XXX 4 | 5 | puts(<<-ONE, <<-TWO) 6 | content for heredoc one 7 | ONE 8 | content for heredoc two 9 | TWO 10 | -------------------------------------------------------------------------------- /lexilla/test/examples/ruby/Issue135.rb.folded: -------------------------------------------------------------------------------- 1 | 2 400 0 + a = <<XXX # :nodoc: 2 | 0 401 0 | heredoc 3 | 0 401 0 | XXX 4 | 1 400 0 5 | 2 400 0 + puts(<<-ONE, <<-TWO) 6 | 0 401 0 | content for heredoc one 7 | 0 401 0 | ONE 8 | 0 401 0 | content for heredoc two 9 | 0 401 0 | TWO 10 | 0 400 0 -------------------------------------------------------------------------------- /lexilla/test/examples/ruby/Issue135.rb.styled: -------------------------------------------------------------------------------- 1 | {11}a{0} {10}={0} {10}<<{20}XXX{0} {2}# :nodoc:{22} 2 | heredoc 3 | {20}XXX{0} 4 | 5 | {11}puts{10}(<<{20}-ONE{10},{0} {10}<<{20}-TWO{10}){22} 6 | content for heredoc one 7 | ONE 8 | content for heredoc two 9 | {20}TWO{0} 10 | -------------------------------------------------------------------------------- /lexilla/test/examples/ruby/Issue136.rb: -------------------------------------------------------------------------------- 1 | a = {r: /\w+/, h: <<EOF 2 | heredoc 3 | EOF 4 | } 5 | 6 | puts a 7 | 8 | def b # :nodoc: 9 | <<EOF 10 | heredoc 11 | EOF 12 | end 13 | 14 | def c # :nodoc: 15 | /\w+/ 16 | end 17 | 18 | puts b 19 | puts c 20 | 21 | $stdout . puts <<EOF 22 | heredoc 23 | EOF 24 | -------------------------------------------------------------------------------- /lexilla/test/examples/ruby/Issue140.rb: -------------------------------------------------------------------------------- 1 | "#{1}"# 2 | "#@a"# 3 | "#@@a"# 4 | "#$a"# 5 | "#$?"# 6 | "#$-a1"# 7 | "#$_a1"# 8 | "#$123"# 9 | "#$\"# 10 | "#quot;"# 11 | a = /#$//# 12 | -------------------------------------------------------------------------------- /lexilla/test/examples/ruby/Issue140.rb.folded: -------------------------------------------------------------------------------- 1 | 0 400 0 "#{1}"# 2 | 0 400 0 "#@a"# 3 | 0 400 0 "#@@a"# 4 | 0 400 0 "#$a"# 5 | 0 400 0 "#$?"# 6 | 0 400 0 "#$-a1"# 7 | 0 400 0 "#$_a1"# 8 | 0 400 0 "#$123"# 9 | 0 400 0 "#$\"# 10 | 0 400 0 "#quot;"# 11 | 0 400 0 a = /#$//# 12 | 0 400 0 -------------------------------------------------------------------------------- /lexilla/test/examples/ruby/Issue66.rb: -------------------------------------------------------------------------------- 1 | # Test that final \n in indented heredoc (2nd example) is styled as SCE_RB_HERE_Q not SCE_RB_HERE_DELIM 2 | <<T 3 | X 4 | T 5 | 6 | <<-T 7 | X 8 | T 9 | -------------------------------------------------------------------------------- /lexilla/test/examples/ruby/Issue66.rb.folded: -------------------------------------------------------------------------------- 1 | 0 400 0 # Test that final \n in indented heredoc (2nd example) is styled as SCE_RB_HERE_Q not SCE_RB_HERE_DELIM 2 | 2 400 0 + <<T 3 | 0 401 0 | X 4 | 0 401 0 | T 5 | 1 400 0 6 | 2 400 0 + <<-T 7 | 0 401 0 | X 8 | 0 401 0 | T 9 | 0 400 0 -------------------------------------------------------------------------------- /lexilla/test/examples/ruby/Issue66.rb.styled: -------------------------------------------------------------------------------- 1 | {2}# Test that final \n in indented heredoc (2nd example) is styled as SCE_RB_HERE_Q not SCE_RB_HERE_DELIM{0} 2 | {10}<<{20}T{22} 3 | X 4 | {20}T{0} 5 | 6 | {10}<<{20}-T{22} 7 | X 8 | {20}T{0} 9 | -------------------------------------------------------------------------------- /lexilla/test/examples/ruby/PercentEquals124.rb: -------------------------------------------------------------------------------- 1 | # Issue 124, disambiguating %= which may be a quote or modulo assignment 2 | # %-quoting with '=' as the quote 3 | s = %=3= 4 | puts s 5 | x = 7 6 | # Modulo assignment, equivalent to x = x % 2 7 | x %=2 8 | puts x 9 | -------------------------------------------------------------------------------- /lexilla/test/examples/ruby/PercentEquals124.rb.folded: -------------------------------------------------------------------------------- 1 | 0 400 0 # Issue 124, disambiguating %= which may be a quote or modulo assignment 2 | 0 400 0 # %-quoting with '=' as the quote 3 | 0 400 0 s = %=3= 4 | 0 400 0 puts s 5 | 0 400 0 x = 7 6 | 0 400 0 # Modulo assignment, equivalent to x = x % 2 7 | 0 400 0 x %=2 8 | 0 400 0 puts x 9 | 0 400 0 -------------------------------------------------------------------------------- /lexilla/test/examples/ruby/PercentEquals124.rb.styled: -------------------------------------------------------------------------------- 1 | {2}# Issue 124, disambiguating %= which may be a quote or modulo assignment{0} 2 | {2}# %-quoting with '=' as the quote{0} 3 | {11}s{0} {10}={0} {25}%=3={0} 4 | {11}puts{0} {11}s{0} 5 | {11}x{0} {10}={0} {4}7{0} 6 | {2}# Modulo assignment, equivalent to x = x % 2{0} 7 | {11}x{0} {10}%={4}2{0} 8 | {11}puts{0} {11}x{0} 9 | -------------------------------------------------------------------------------- /lexilla/test/examples/ruby/SciTE.properties: -------------------------------------------------------------------------------- 1 | lexer.*.rb=ruby 2 | keywords.*.rb=begin class def do else end false if module return self super true unless until while \ 3 | __FILE__ __LINE__ 4 | fold=1 5 | 6 | substyles.ruby.11=2 7 | substylewords.11.1.*=decrypt STDERR 8 | substylewords.11.2.*=encrypt 9 | -------------------------------------------------------------------------------- /lexilla/test/examples/ruby/x.rb: -------------------------------------------------------------------------------- 1 | class Demo 2 | def test # A test 3 | i = 1 4 | puts "Example" 5 | end 6 | end -------------------------------------------------------------------------------- /lexilla/test/examples/ruby/x.rb.folded: -------------------------------------------------------------------------------- 1 | 2 400 0 + class Demo 2 | 2 401 0 + def test # A test 3 | 0 402 0 | i = 1 4 | 0 402 0 | puts "Example" 5 | 0 402 0 | end 6 | 0 401 0 | end -------------------------------------------------------------------------------- /lexilla/test/examples/ruby/x.rb.styled: -------------------------------------------------------------------------------- 1 | {5}class{0} {8}Demo{0} 2 | {5}def{0} {9}test{0} {2}# A test{0} 3 | {11}i{0} {10}={0} {4}1{0} 4 | {11}puts{0} {6}"Example"{0} 5 | {5}end{0} 6 | {5}end -------------------------------------------------------------------------------- /lexilla/test/examples/rust/Issue239.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | let r#true = false; 3 | println!("{}", r#true); 4 | } -------------------------------------------------------------------------------- /lexilla/test/examples/rust/Issue239.rs.folded: -------------------------------------------------------------------------------- 1 | 2 400 401 + fn main() { 2 | 0 401 401 | let r#true = false; 3 | 0 401 401 | println!("{}", r#true); 4 | 0 401 400 | } -------------------------------------------------------------------------------- /lexilla/test/examples/rust/Issue239.rs.styled: -------------------------------------------------------------------------------- 1 | {6}fn{0} {17}main{16}(){0} {16}{{0} 2 | {6}let{0} {17}r#true{0} {16}={0} {6}false{16};{0} 3 | {19}println!{16}({13}"{}"{16},{0} {17}r#true{16});{0} 4 | {16}} -------------------------------------------------------------------------------- /lexilla/test/examples/rust/Issue33.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | let a: i128 = 42i128; 3 | let b: u128 = 1337u128; 4 | println!("{} + {} = {}", a, b, (a as u128) + b); 5 | } 6 | -------------------------------------------------------------------------------- /lexilla/test/examples/rust/Issue33.rs.folded: -------------------------------------------------------------------------------- 1 | 2 400 401 + fn main() { 2 | 0 401 401 | let a: i128 = 42i128; 3 | 0 401 401 | let b: u128 = 1337u128; 4 | 0 401 401 | println!("{} + {} = {}", a, b, (a as u128) + b); 5 | 0 401 400 | } 6 | 1 400 400 -------------------------------------------------------------------------------- /lexilla/test/examples/rust/Issue33.rs.styled: -------------------------------------------------------------------------------- 1 | {6}fn{0} {17}main{16}(){0} {16}{{0} 2 | {6}let{0} {17}a{16}:{0} {7}i128{0} {16}={0} {5}42i128{16};{0} 3 | {6}let{0} {17}b{16}:{0} {7}u128{0} {16}={0} {5}1337u128{16};{0} 4 | {19}println!{16}({13}"{} + {} = {}"{16},{0} {17}a{16},{0} {17}b{16},{0} {16}({17}a{0} {6}as{0} {7}u128{16}){0} {16}+{0} {17}b{16});{0} 5 | {16}}{0} 6 | -------------------------------------------------------------------------------- /lexilla/test/examples/rust/Issue34.rs: -------------------------------------------------------------------------------- 1 | /** 2 | * SCE_RUST_COMMENTBLOCKDOC 3 | */ 4 | fn main() { 5 | /// SCE_RUST_COMMENTLINEDOC 6 | println!("Hello, World!"); 7 | } 8 | // SCE_RUST_COMMENTLINE 9 | /* 10 | * SCE_RUST_COMMENTBLOCK 11 | */ 12 | -------------------------------------------------------------------------------- /lexilla/test/examples/rust/Issue34.rs.folded: -------------------------------------------------------------------------------- 1 | 2 400 401 + /** 2 | 0 401 401 | * SCE_RUST_COMMENTBLOCKDOC 3 | 0 401 400 | */ 4 | 2 400 401 + fn main() { 5 | 0 401 401 | /// SCE_RUST_COMMENTLINEDOC 6 | 0 401 401 | println!("Hello, World!"); 7 | 0 401 400 | } 8 | 0 400 400 // SCE_RUST_COMMENTLINE 9 | 2 400 401 + /* 10 | 0 401 401 | * SCE_RUST_COMMENTBLOCK 11 | 0 401 400 | */ 12 | 1 400 400 -------------------------------------------------------------------------------- /lexilla/test/examples/rust/Issue34.rs.styled: -------------------------------------------------------------------------------- 1 | {3}/** 2 | * SCE_RUST_COMMENTBLOCKDOC 3 | */{0} 4 | {6}fn{0} {17}main{16}(){0} {16}{{0} 5 | {4}/// SCE_RUST_COMMENTLINEDOC{0} 6 | {19}println!{16}({13}"Hello, World!"{16});{0} 7 | {16}}{0} 8 | {2}// SCE_RUST_COMMENTLINE{0} 9 | {1}/* 10 | * SCE_RUST_COMMENTBLOCK 11 | */{0} 12 | -------------------------------------------------------------------------------- /lexilla/test/examples/rust/Issue35.rs: -------------------------------------------------------------------------------- 1 | /// GitHub Issue #35 2 | fn main() {} 3 | /* -------------------------------------------------------------------------------- /lexilla/test/examples/rust/Issue35.rs.folded: -------------------------------------------------------------------------------- 1 | 0 400 400 /// GitHub Issue #35 2 | 0 400 400 fn main() {} 3 | 2 400 401 + /* -------------------------------------------------------------------------------- /lexilla/test/examples/rust/Issue35.rs.styled: -------------------------------------------------------------------------------- 1 | {4}/// GitHub Issue #35{0} 2 | {6}fn{0} {17}main{16}(){0} {16}{}{0} 3 | {1}/* -------------------------------------------------------------------------------- /lexilla/test/examples/smalltalk/SciTE.properties: -------------------------------------------------------------------------------- 1 | lexer.*.st=smalltalk 2 | keywords.*.st=ifTrue: ifFalse: whileTrue: whileFalse: ifNil: ifNotNil: whileTrue whileFalse repeat isNil notNil 3 | -------------------------------------------------------------------------------- /lexilla/test/examples/tcl/SciTE.properties: -------------------------------------------------------------------------------- 1 | lexer.*.tcl=tcl 2 | keywords.*.tcl=proc set socket vwait 3 | fold.comment=1 4 | fold.compact=1 5 | -------------------------------------------------------------------------------- /lexilla/test/examples/tcl/x.tcl: -------------------------------------------------------------------------------- 1 | # tcl tests 2 | 3 | #simple example 4 | 5 | proc Echo_Server {port} { 6 | set s [socket -server EchoAccept $port] 7 | vwait forever; 8 | } 9 | 10 | # Bug #1947 11 | 12 | $s($i,"n") 13 | set n $showArray($i,"neighbor") 14 | -------------------------------------------------------------------------------- /lexilla/test/examples/toml/SciTE.properties: -------------------------------------------------------------------------------- 1 | lexer.*.toml=toml 2 | fold=1 3 | keywords.*.toml=false inf nan true 4 | -------------------------------------------------------------------------------- /lexilla/test/examples/vb/SciTE.properties: -------------------------------------------------------------------------------- 1 | lexer.*.vb=vb 2 | keywords.*.vb=as dim or string 3 | keywords2.*.vb=key2 4 | keywords3.*.vb=key3 5 | keywords4.*.vb=key4 6 | 7 | lexer.*.vbs=vbscript 8 | keywords.*.vbs=as dim or string 9 | keywords2.*.vbs=key2 10 | keywords3.*.vbs=key3 11 | keywords4.*.vbs=key4 12 | 13 | fold=1 14 | 15 | match x.vb 16 | lexer.vb.strings.multiline=1 17 | -------------------------------------------------------------------------------- /lexilla/test/examples/vhdl/SciTE.properties: -------------------------------------------------------------------------------- 1 | lexer.*.vhd=vhdl 2 | fold=1 3 | 4 | -------------------------------------------------------------------------------- /lexilla/test/examples/x12/SciTE.properties: -------------------------------------------------------------------------------- 1 | lexer.*.x12=x12 2 | fold=1 3 | 4 | -------------------------------------------------------------------------------- /lexilla/test/examples/x12/empty.x12: -------------------------------------------------------------------------------- 1 | ISA*00* *00* *01*0011223456 *01*999999999 *950120*0147*U*00300*000000007*0*P*~ 2 | IEA*2*000000007 3 | -------------------------------------------------------------------------------- /lexilla/test/examples/x12/empty.x12.folded: -------------------------------------------------------------------------------- 1 | 2 400 0 + ISA*00* *00* *01*0011223456 *01*999999999 *950120*0147*U*00300*000000007*0*P*~ 2 | 0 401 0 | IEA*2*000000007 3 | 0 400 0 -------------------------------------------------------------------------------- /lexilla/test/examples/x12/empty.x12.styled: -------------------------------------------------------------------------------- 1 | {2}ISA{7}*{0}00{7}*{0} {7}*{0}00{7}*{0} {7}*{0}01{7}*{0}0011223456 {7}*{0}01{7}*{0}999999999 {7}*{0}950120{7}*{0}0147{7}*{0}U{7}*{0}00300{7}*{0}000000007{7}*{0}0{7}*{0}P{7}*{8}~{6} 2 | {2}IEA{7}*{0}2{7}*{0}000000007{6} 3 | -------------------------------------------------------------------------------- /lexilla/test/examples/yaml/SciTE.properties: -------------------------------------------------------------------------------- 1 | lexer.*.yaml=yaml 2 | keywords.*.yaml=true false yes no 3 | fold=1 4 | -------------------------------------------------------------------------------- /lexilla/test/examples/yaml/x.yaml: -------------------------------------------------------------------------------- 1 | # comment 2 | 3 | key: value # comment 4 | 5 | colon:in:key: value 6 | 7 | hanging_value: 8 | value 9 | 10 | 1: 1 11 | 12 | true: true 13 | -------------------------------------------------------------------------------- /lexilla/test/examples/yaml/x.yaml.folded: -------------------------------------------------------------------------------- 1 | 0 400 0 # comment 2 | 1 400 0 3 | 0 400 0 key: value # comment 4 | 1 400 0 5 | 0 400 0 colon:in:key: value 6 | 1 400 0 7 | 2 400 0 + hanging_value: 8 | 0 402 0 | value 9 | 1 400 0 10 | 0 400 0 1: 1 11 | 1 400 0 12 | 0 400 0 true: true 13 | 0 400 0 -------------------------------------------------------------------------------- /lexilla/test/examples/yaml/x.yaml.styled: -------------------------------------------------------------------------------- 1 | {1}# comment 2 | {0} 3 | {2}key{9}:{0} value {1}# comment 4 | {0} 5 | {2}colon:in:key{9}:{0} value 6 | 7 | {2}hanging_value{9}:{0} 8 | value 9 | 10 | {2}1{9}:{4} 1 11 | {0} 12 | {2}true{9}:{3} true 13 | -------------------------------------------------------------------------------- /lexilla/test/unit/SciTE.properties: -------------------------------------------------------------------------------- 1 | command.go.*.cxx=./unitTest 2 | if PLAT_WIN 3 | make.command=mingw32-make 4 | command.go.*.cxx=unitTest 5 | command.go.needs.$(file.patterns.cplusplus)=$(make.command) 6 | -------------------------------------------------------------------------------- /lexilla/tgzsrc: -------------------------------------------------------------------------------- 1 | cd .. 2 | rm -f lexilla.tgz 3 | tar --create --exclude \*.o --exclude \*.obj --exclude \*.dll --exclude \*.so --exclude \*.exe --exclude \*.a lexilla/* \ 4 | | gzip -c >lexilla.tgz 5 | -------------------------------------------------------------------------------- /lexilla/version.txt: -------------------------------------------------------------------------------- 1 | 545 -------------------------------------------------------------------------------- /lexilla/zipsrc.bat: -------------------------------------------------------------------------------- 1 | cd .. 2 | del/q lexilla.zip 3 | zip lexilla.zip lexilla\*.* lexilla\*\*.* lexilla\*\*\*.* lexilla\*\*\*\*.* lexilla\*\*\*\*\*.* ^ 4 | -x *.bak *.o *.obj *.iobj *.dll *.exe *.a *.lib *.res *.exp *.sarif *.pdb *.ipdb *.idb *.sbr *.ilk *.tgz ^ 5 | **/__pycache__/* **/Debug/* **/Release/* **/x64/* **/ARM64/* **/cov-int/* **/.vs/* **/.vscode/* @ 6 | cd lexilla 7 | -------------------------------------------------------------------------------- /scintilla/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [**] 4 | indent_style = tab 5 | -------------------------------------------------------------------------------- /scintilla/bin/empty.txt: -------------------------------------------------------------------------------- 1 | This empty files ensures that the directory is created. -------------------------------------------------------------------------------- /scintilla/cocoa/Scintilla/Scintilla.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="UTF-8"?> 2 | <Workspace 3 | version = "1.0"> 4 | <FileRef 5 | location = "self:Scintilla.xcodeproj"> 6 | </FileRef> 7 | </Workspace> 8 | -------------------------------------------------------------------------------- /scintilla/cocoa/Scintilla/Scintilla.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="UTF-8"?> 2 | <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> 3 | <plist version="1.0"> 4 | <dict> 5 | <key>IDEDidComputeMac32BitWarning</key> 6 | <true/> 7 | </dict> 8 | </plist> 9 | -------------------------------------------------------------------------------- /scintilla/cocoa/Scintilla/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module Scintilla { 2 | umbrella header "ScintillaView.h" 3 | module InfoBar { 4 | header "InfoBar.h" 5 | } 6 | // ILexer.h is not included as Swift doesn't yet interoperate with C++ 7 | exclude header "ILexer.h" 8 | export * 9 | module * { export * } 10 | } 11 | -------------------------------------------------------------------------------- /scintilla/cocoa/ScintillaTest/ScintillaTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="UTF-8"?> 2 | <Workspace 3 | version = "1.0"> 4 | <FileRef 5 | location = "self:ScintillaTest.xcodeproj"> 6 | </FileRef> 7 | </Workspace> 8 | -------------------------------------------------------------------------------- /scintilla/cocoa/ScintillaTest/ScintillaTest.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="UTF-8"?> 2 | <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> 3 | <plist version="1.0"> 4 | <dict> 5 | <key>IDEDidComputeMac32BitWarning</key> 6 | <true/> 7 | </dict> 8 | </plist> 9 | -------------------------------------------------------------------------------- /scintilla/cocoa/ScintillaTest/ScintillaTest_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'ScintillaTest' target in the 'ScintillaTest' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import <Cocoa/Cocoa.h> 7 | #endif 8 | -------------------------------------------------------------------------------- /scintilla/cocoa/ScintillaTest/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/scintilla/cocoa/ScintillaTest/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /scintilla/cocoa/res/info_bar_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/scintilla/cocoa/res/info_bar_bg.png -------------------------------------------------------------------------------- /scintilla/cocoa/res/info_bar_bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/scintilla/cocoa/res/info_bar_bg@2x.png -------------------------------------------------------------------------------- /scintilla/cocoa/res/mac_cursor_busy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/scintilla/cocoa/res/mac_cursor_busy.png -------------------------------------------------------------------------------- /scintilla/cocoa/res/mac_cursor_busy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/scintilla/cocoa/res/mac_cursor_busy@2x.png -------------------------------------------------------------------------------- /scintilla/cocoa/res/mac_cursor_flipped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/scintilla/cocoa/res/mac_cursor_flipped.png -------------------------------------------------------------------------------- /scintilla/cocoa/res/mac_cursor_flipped@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/scintilla/cocoa/res/mac_cursor_flipped@2x.png -------------------------------------------------------------------------------- /scintilla/delbin.bat: -------------------------------------------------------------------------------- 1 | @del /S /Q *.a *.aps *.bsc *.dll *.dsw *.exe *.idb *.ilc *.ild *.ilf *.ilk *.ils *.lib *.map *.ncb *.obj *.o *.opt *.ipdb *.pdb *.plg *.res *.sbr *.tds *.exp *.tlog *.lastbuildstate >NUL: 2 | -------------------------------------------------------------------------------- /scintilla/doc/ChangeHistory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/scintilla/doc/ChangeHistory.png -------------------------------------------------------------------------------- /scintilla/doc/Indicators.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/scintilla/doc/Indicators.png -------------------------------------------------------------------------------- /scintilla/doc/Markers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/scintilla/doc/Markers.png -------------------------------------------------------------------------------- /scintilla/doc/SciBreak.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/scintilla/doc/SciBreak.jpg -------------------------------------------------------------------------------- /scintilla/doc/SciRest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/scintilla/doc/SciRest.jpg -------------------------------------------------------------------------------- /scintilla/doc/SciTEIco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/scintilla/doc/SciTEIco.png -------------------------------------------------------------------------------- /scintilla/doc/SciWord.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/scintilla/doc/SciWord.jpg -------------------------------------------------------------------------------- /scintilla/doc/ScintillaLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/scintilla/doc/ScintillaLogo.png -------------------------------------------------------------------------------- /scintilla/doc/ScintillaLogo2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/scintilla/doc/ScintillaLogo2x.png -------------------------------------------------------------------------------- /scintilla/doc/StadiumVariants.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/scintilla/doc/StadiumVariants.png -------------------------------------------------------------------------------- /scintilla/doc/annotations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/scintilla/doc/annotations.png -------------------------------------------------------------------------------- /scintilla/doc/eolannotation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/scintilla/doc/eolannotation.png -------------------------------------------------------------------------------- /scintilla/doc/styledmargin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/scintilla/doc/styledmargin.png -------------------------------------------------------------------------------- /scintilla/gtk/scintilla-marshal.list: -------------------------------------------------------------------------------- 1 | VOID:INT,OBJECT 2 | VOID:INT,BOXED 3 | -------------------------------------------------------------------------------- /scintilla/scripts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/f234207f5dd8f45ecd97cb08a21aa993e7469b65/scintilla/scripts/__init__.py -------------------------------------------------------------------------------- /scintilla/scripts/archive.sh: -------------------------------------------------------------------------------- 1 | # Up to parent directory of scintilla 2 | cd ../.. 3 | 4 | # Archive Scintilla to scintilla.tgz 5 | hg archive --repository scintilla scintilla.tgz 6 | -------------------------------------------------------------------------------- /scintilla/src/SciTE.properties: -------------------------------------------------------------------------------- 1 | # SciTE.properties is the per directory local options file and can be used to override 2 | # settings made in SciTEGlobal.properties 3 | command.build.directory.*.cxx=..\win32 4 | command.build.directory.*.h=..\win32 5 | command.build.*.cxx=nmake -f scintilla.mak QUIET=1 6 | command.build.*.h=nmake -f scintilla.mak QUIET=1 7 | -------------------------------------------------------------------------------- /scintilla/test/unit/SciTE.properties: -------------------------------------------------------------------------------- 1 | command.go.*.cxx=./unitTest 2 | if PLAT_WIN 3 | make.command=mingw32-make 4 | command.go.*.cxx=unitTest 5 | command.go.needs.$(file.patterns.cplusplus)=$(make.command) 6 | -------------------------------------------------------------------------------- /scintilla/test/xite.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | # -*- coding: utf-8 -*- 3 | # Requires Python 3.6 or later 4 | 5 | import XiteWin 6 | 7 | if __name__ == "__main__": 8 | XiteWin.main("") 9 | -------------------------------------------------------------------------------- /scintilla/tgzsrc: -------------------------------------------------------------------------------- 1 | cd .. 2 | rm -f scintilla.tgz 3 | tar --create --exclude \*.o --exclude \*.obj --exclude \*.dll --exclude \*.so --exclude \*.exe --exclude \*.a scintilla/* \ 4 | | gzip -c >scintilla.tgz 5 | -------------------------------------------------------------------------------- /scintilla/version.txt: -------------------------------------------------------------------------------- 1 | 557 2 | -------------------------------------------------------------------------------- /scintilla/win32/Scintilla.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | Scintilla_DirectFunction -------------------------------------------------------------------------------- /scintilla/zipsrc.bat: -------------------------------------------------------------------------------- 1 | cd .. 2 | del/q scintilla.zip 3 | zip scintilla.zip scintilla\*.* scintilla\*\*.* scintilla\*\*\*.* scintilla\*\*\*\*.* scintilla\*\*\*\*\*.* ^ 4 | -x *.o *.obj *.dll *.lib *.res *.exp *.bak *.tgz ^ 5 | **/__pycache__/* **/Debug/* **/Release/* **/x64/* **/ARM64/* **/cov-int/* */.hg/* @ 6 | cd scintilla 7 | --------------------------------------------------------------------------------