gitextract_p2dfp083/ ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── README_EN.md ├── THIRDPARTY.md ├── changelog.txt ├── cmake/ │ ├── deb_package_config.cmake │ └── nsis_package_config.cmake ├── src/ │ ├── .qmake.stash │ ├── CmpareMode.cpp │ ├── CmpareMode.h │ ├── Encode.cpp │ ├── Encode.h │ ├── LICENSE │ ├── MediatorDisplay.cpp │ ├── MediatorDisplay.h │ ├── MediatorFileTree.cpp │ ├── MediatorFileTree.h │ ├── QTreeWidgetSortItem.cpp │ ├── QTreeWidgetSortItem.h │ ├── RcTreeWidget.cpp │ ├── RcTreeWidget.h │ ├── RealCompare.pri │ ├── RealCompare.pro │ ├── RealCompare.qrc │ ├── RealCompare.rc │ ├── RealCompareToMinGw.rc │ ├── Resources/ │ │ └── macicon.icns │ ├── Sorters.h │ ├── StrategyCompare.h │ ├── aboutndd.cpp │ ├── aboutndd.h │ ├── aboutndd.ui │ ├── batchfindreplace.cpp │ ├── batchfindreplace.h │ ├── batchfindreplace.ui │ ├── bigfilemessage.cpp │ ├── bigfilemessage.h │ ├── bigfilemessage.ui │ ├── cceditor/ │ │ ├── ccnotepad.cpp │ │ ├── ccnotepad.h │ │ ├── ccnotepad.ui │ │ ├── filemanager.cpp │ │ └── filemanager.h │ ├── closeDlg.cpp │ ├── closeDlg.h │ ├── closeDlg.ui │ ├── columnedit.cpp │ ├── columnedit.h │ ├── columnedit.ui │ ├── command.cpp │ ├── command.h │ ├── common.cpp │ ├── common.h │ ├── ctipwin.cpp │ ├── ctipwin.h │ ├── ctipwin.ui │ ├── dectfilechanges.cpp │ ├── dectfilechanges.h │ ├── diff.h │ ├── dirfindfile.cpp │ ├── dirfindfile.h │ ├── dirfindfile.ui │ ├── doctypelistview.cpp │ ├── doctypelistview.h │ ├── doctypelistview.ui │ ├── donate.cpp │ ├── donate.h │ ├── donate.ui │ ├── draglineedit.cpp │ ├── draglineedit.h │ ├── encodeconvert.cpp │ ├── encodeconvert.h │ ├── encodeconvert.ui │ ├── extLexermanager.cpp │ ├── extlexermanager.h │ ├── filecmprulewin.cpp │ ├── filecmprulewin.h │ ├── filecmprulewin.ui │ ├── filelistview.cpp │ ├── filelistview.h │ ├── filelistview.ui │ ├── findcmpwin.cpp │ ├── findcmpwin.h │ ├── findcmpwin.ui │ ├── findresultview.cpp │ ├── findresultview.h │ ├── findresultwin.cpp │ ├── findresultwin.h │ ├── findresultwin.ui │ ├── findwin.cpp │ ├── findwin.h │ ├── findwin.ui │ ├── gotolinewin.cpp │ ├── gotolinewin.h │ ├── gotolinewin.ui │ ├── hexcmprangewin.cpp │ ├── hexcmprangewin.h │ ├── hexcmprangewin.ui │ ├── hexfilegoto.cpp │ ├── hexfilegoto.h │ ├── hexfilegoto.ui │ ├── hexrulewin.cpp │ ├── hexrulewin.h │ ├── hexrulewin.ui │ ├── include/ │ │ └── pluginGl.h │ ├── installer/ │ │ ├── NsisMultiUser/ │ │ │ └── Include/ │ │ │ ├── NsisMultiUser.nsh │ │ │ ├── NsisMultiUserLang.nsh │ │ │ ├── StdUtils.nsh │ │ │ └── UAC.nsh │ │ ├── installer.nsi │ │ ├── newinstall.iss │ │ ├── newinstall_dync.iss │ │ └── utils.nsh │ ├── langextset.cpp │ ├── langextset.h │ ├── langextset.ui │ ├── langstyledefine.cpp │ ├── langstyledefine.h │ ├── langstyledefine.ui │ ├── linux/ │ │ └── usr/ │ │ └── share/ │ │ ├── applications/ │ │ │ └── NotePad--.desktop │ │ ├── licenses/ │ │ │ └── notepad--/ │ │ │ └── LICENSE │ │ └── metainfo/ │ │ └── io.gitee.cxasm.notepad--.metainfo.xml │ ├── mac.icns │ ├── macicon/ │ │ └── mac.icns │ ├── macpro/ │ │ └── RealCompare.pro │ ├── main.cpp │ ├── markdownview.cpp │ ├── markdownview.h │ ├── markdownview.ui │ ├── md5hash.cpp │ ├── md5hash.h │ ├── md5hash.ui │ ├── mystyle.qss │ ├── mytreeview.cpp │ ├── mytreeview.h │ ├── nddpluginapi.cpp │ ├── nddpluginapi.h │ ├── nddsetting.cpp │ ├── nddsetting.h │ ├── ndstyleditemdelegate.cpp │ ├── ndstyleditemdelegate.h │ ├── optionsview.cpp │ ├── optionsview.h │ ├── optionsview.ui │ ├── plugin/ │ │ ├── helloworld/ │ │ │ ├── CMakeLists.txt │ │ │ ├── helloworld.pro │ │ │ ├── helloworldexport.cpp │ │ │ ├── qttestclass.cpp │ │ │ ├── qttestclass.h │ │ │ └── qttestclass.ui │ │ └── test/ │ │ ├── test.cpp │ │ └── test.pro │ ├── plugin.cpp │ ├── plugin.h │ ├── pluginGl.h │ ├── pluginmgr.cpp │ ├── pluginmgr.h │ ├── pluginmgr.ui │ ├── progresswin.cpp │ ├── progresswin.h │ ├── progresswin.ui │ ├── qscidisplaywindow.cpp │ ├── qscidisplaywindow.h │ ├── qscint/ │ │ ├── CMakeLists.txt │ │ ├── ChangeLog │ │ ├── LICENSE │ │ ├── NEWS │ │ ├── Python/ │ │ │ ├── README │ │ │ ├── config-tests/ │ │ │ │ └── cfgtest_Qsci.cpp │ │ │ ├── project.py │ │ │ ├── pyproject-qt5.toml │ │ │ ├── pyproject-qt6.toml │ │ │ └── sip/ │ │ │ ├── qsciabstractapis.sip │ │ │ ├── qsciapis.sip │ │ │ ├── qscicommand.sip │ │ │ ├── qscicommandset.sip │ │ │ ├── qscidocument.sip │ │ │ ├── qscilexer.sip │ │ │ ├── qscilexeravs.sip │ │ │ ├── qscilexerbash.sip │ │ │ ├── qscilexerbatch.sip │ │ │ ├── qscilexercmake.sip │ │ │ ├── qscilexercoffeescript.sip │ │ │ ├── qscilexercpp.sip │ │ │ ├── qscilexercsharp.sip │ │ │ ├── qscilexercss.sip │ │ │ ├── qscilexercustom.sip │ │ │ ├── qscilexerd.sip │ │ │ ├── qscilexerdiff.sip │ │ │ ├── qscilexeredifact.sip │ │ │ ├── qscilexerfortran.sip │ │ │ ├── qscilexerfortran77.sip │ │ │ ├── qscilexerhtml.sip │ │ │ ├── qscilexeridl.sip │ │ │ ├── qscilexerjava.sip │ │ │ ├── qscilexerjavascript.sip │ │ │ ├── qscilexerjson.sip │ │ │ ├── qscilexerlua.sip │ │ │ ├── qscilexermakefile.sip │ │ │ ├── qscilexermarkdown.sip │ │ │ ├── qscilexermatlab.sip │ │ │ ├── qscilexeroctave.sip │ │ │ ├── qscilexerpascal.sip │ │ │ ├── qscilexerperl.sip │ │ │ ├── qscilexerpo.sip │ │ │ ├── qscilexerpostscript.sip │ │ │ ├── qscilexerpov.sip │ │ │ ├── qscilexerproperties.sip │ │ │ ├── qscilexerpython.sip │ │ │ ├── qscilexerruby.sip │ │ │ ├── qscilexerspice.sip │ │ │ ├── qscilexersql.sip │ │ │ ├── qscilexertcl.sip │ │ │ ├── qscilexertex.sip │ │ │ ├── qscilexerverilog.sip │ │ │ ├── qscilexervhdl.sip │ │ │ ├── qscilexerxml.sip │ │ │ ├── qscilexeryaml.sip │ │ │ ├── qscimacro.sip │ │ │ ├── qscimod5.sip │ │ │ ├── qscimod6.sip │ │ │ ├── qscimodcommon.sip │ │ │ ├── qsciprinter.sip │ │ │ ├── qsciscintilla.sip │ │ │ ├── qsciscintillabase.sip │ │ │ ├── qscistyle.sip │ │ │ └── qscistyledtext.sip │ │ ├── doc/ │ │ │ ├── README.doc │ │ │ ├── Scintilla/ │ │ │ │ ├── Design.html │ │ │ │ ├── Icons.html │ │ │ │ ├── LPegLexer.html │ │ │ │ ├── Lexer.txt │ │ │ │ ├── Privacy.html │ │ │ │ ├── SciCoding.html │ │ │ │ ├── ScintillaDoc.html │ │ │ │ ├── ScintillaDownload.html │ │ │ │ ├── ScintillaHistory.html │ │ │ │ ├── ScintillaRelated.html │ │ │ │ ├── ScintillaToDo.html │ │ │ │ ├── ScintillaUsage.html │ │ │ │ ├── Steps.html │ │ │ │ ├── StyleMetadata.html │ │ │ │ └── index.html │ │ │ ├── html/ │ │ │ │ ├── annotated.html │ │ │ │ ├── classQsciAPIs-members.html │ │ │ │ ├── classQsciAPIs.html │ │ │ │ ├── classQsciAbstractAPIs-members.html │ │ │ │ ├── classQsciAbstractAPIs.html │ │ │ │ ├── classQsciCommand-members.html │ │ │ │ ├── classQsciCommand.html │ │ │ │ ├── classQsciCommandSet-members.html │ │ │ │ ├── classQsciCommandSet.html │ │ │ │ ├── classQsciDocument-members.html │ │ │ │ ├── classQsciDocument.html │ │ │ │ ├── classQsciLexer-members.html │ │ │ │ ├── classQsciLexer.html │ │ │ │ ├── classQsciLexerAVS-members.html │ │ │ │ ├── classQsciLexerAVS.html │ │ │ │ ├── classQsciLexerBash-members.html │ │ │ │ ├── classQsciLexerBash.html │ │ │ │ ├── classQsciLexerBatch-members.html │ │ │ │ ├── classQsciLexerBatch.html │ │ │ │ ├── classQsciLexerCMake-members.html │ │ │ │ ├── classQsciLexerCMake.html │ │ │ │ ├── classQsciLexerCPP-members.html │ │ │ │ ├── classQsciLexerCPP.html │ │ │ │ ├── classQsciLexerCSS-members.html │ │ │ │ ├── classQsciLexerCSS.html │ │ │ │ ├── classQsciLexerCSharp-members.html │ │ │ │ ├── classQsciLexerCSharp.html │ │ │ │ ├── classQsciLexerCoffeeScript-members.html │ │ │ │ ├── classQsciLexerCoffeeScript.html │ │ │ │ ├── classQsciLexerCustom-members.html │ │ │ │ ├── classQsciLexerCustom.html │ │ │ │ ├── classQsciLexerD-members.html │ │ │ │ ├── classQsciLexerD.html │ │ │ │ ├── classQsciLexerDiff-members.html │ │ │ │ ├── classQsciLexerDiff.html │ │ │ │ ├── classQsciLexerEDIFACT-members.html │ │ │ │ ├── classQsciLexerEDIFACT.html │ │ │ │ ├── classQsciLexerFortran-members.html │ │ │ │ ├── classQsciLexerFortran.html │ │ │ │ ├── classQsciLexerFortran77-members.html │ │ │ │ ├── classQsciLexerFortran77.html │ │ │ │ ├── classQsciLexerHTML-members.html │ │ │ │ ├── classQsciLexerHTML.html │ │ │ │ ├── classQsciLexerIDL-members.html │ │ │ │ ├── classQsciLexerIDL.html │ │ │ │ ├── classQsciLexerJSON-members.html │ │ │ │ ├── classQsciLexerJSON.html │ │ │ │ ├── classQsciLexerJava-members.html │ │ │ │ ├── classQsciLexerJava.html │ │ │ │ ├── classQsciLexerJavaScript-members.html │ │ │ │ ├── classQsciLexerJavaScript.html │ │ │ │ ├── classQsciLexerLua-members.html │ │ │ │ ├── classQsciLexerLua.html │ │ │ │ ├── classQsciLexerMakefile-members.html │ │ │ │ ├── classQsciLexerMakefile.html │ │ │ │ ├── classQsciLexerMarkdown-members.html │ │ │ │ ├── classQsciLexerMarkdown.html │ │ │ │ ├── classQsciLexerMatlab-members.html │ │ │ │ ├── classQsciLexerMatlab.html │ │ │ │ ├── classQsciLexerOctave-members.html │ │ │ │ ├── classQsciLexerOctave.html │ │ │ │ ├── classQsciLexerPO-members.html │ │ │ │ ├── classQsciLexerPO.html │ │ │ │ ├── classQsciLexerPOV-members.html │ │ │ │ ├── classQsciLexerPOV.html │ │ │ │ ├── classQsciLexerPascal-members.html │ │ │ │ ├── classQsciLexerPascal.html │ │ │ │ ├── classQsciLexerPerl-members.html │ │ │ │ ├── classQsciLexerPerl.html │ │ │ │ ├── classQsciLexerPostScript-members.html │ │ │ │ ├── classQsciLexerPostScript.html │ │ │ │ ├── classQsciLexerProperties-members.html │ │ │ │ ├── classQsciLexerProperties.html │ │ │ │ ├── classQsciLexerPython-members.html │ │ │ │ ├── classQsciLexerPython.html │ │ │ │ ├── classQsciLexerRuby-members.html │ │ │ │ ├── classQsciLexerRuby.html │ │ │ │ ├── classQsciLexerSQL-members.html │ │ │ │ ├── classQsciLexerSQL.html │ │ │ │ ├── classQsciLexerSpice-members.html │ │ │ │ ├── classQsciLexerSpice.html │ │ │ │ ├── classQsciLexerTCL-members.html │ │ │ │ ├── classQsciLexerTCL.html │ │ │ │ ├── classQsciLexerTeX-members.html │ │ │ │ ├── classQsciLexerTeX.html │ │ │ │ ├── classQsciLexerVHDL-members.html │ │ │ │ ├── classQsciLexerVHDL.html │ │ │ │ ├── classQsciLexerVerilog-members.html │ │ │ │ ├── classQsciLexerVerilog.html │ │ │ │ ├── classQsciLexerXML-members.html │ │ │ │ ├── classQsciLexerXML.html │ │ │ │ ├── classQsciLexerYAML-members.html │ │ │ │ ├── classQsciLexerYAML.html │ │ │ │ ├── classQsciMacro-members.html │ │ │ │ ├── classQsciMacro.html │ │ │ │ ├── classQsciPrinter-members.html │ │ │ │ ├── classQsciPrinter.html │ │ │ │ ├── classQsciScintilla-members.html │ │ │ │ ├── classQsciScintilla.html │ │ │ │ ├── classQsciScintillaBase-members.html │ │ │ │ ├── classQsciScintillaBase.html │ │ │ │ ├── classQsciStyle-members.html │ │ │ │ ├── classQsciStyle.html │ │ │ │ ├── classQsciStyledText-members.html │ │ │ │ ├── classQsciStyledText.html │ │ │ │ ├── classes.html │ │ │ │ ├── dir_68267d1309a1af8e8297ef4c3efbcdba.html │ │ │ │ ├── dir_e7e7b0b6fe362def31d601fa026bbeed.html │ │ │ │ ├── doxygen.css │ │ │ │ ├── dynsections.js │ │ │ │ ├── functions.html │ │ │ │ ├── functions_b.html │ │ │ │ ├── functions_c.html │ │ │ │ ├── functions_d.html │ │ │ │ ├── functions_e.html │ │ │ │ ├── functions_enum.html │ │ │ │ ├── functions_eval.html │ │ │ │ ├── functions_eval_b.html │ │ │ │ ├── functions_eval_c.html │ │ │ │ ├── functions_eval_d.html │ │ │ │ ├── functions_eval_e.html │ │ │ │ ├── functions_eval_f.html │ │ │ │ ├── functions_eval_g.html │ │ │ │ ├── functions_eval_h.html │ │ │ │ ├── functions_eval_i.html │ │ │ │ ├── functions_eval_j.html │ │ │ │ ├── functions_eval_k.html │ │ │ │ ├── functions_eval_l.html │ │ │ │ ├── functions_eval_m.html │ │ │ │ ├── functions_eval_n.html │ │ │ │ ├── functions_eval_o.html │ │ │ │ ├── functions_eval_p.html │ │ │ │ ├── functions_eval_q.html │ │ │ │ ├── functions_eval_r.html │ │ │ │ ├── functions_eval_s.html │ │ │ │ ├── functions_eval_t.html │ │ │ │ ├── functions_eval_u.html │ │ │ │ ├── functions_eval_v.html │ │ │ │ ├── functions_eval_w.html │ │ │ │ ├── functions_eval_x.html │ │ │ │ ├── functions_eval_z.html │ │ │ │ ├── functions_f.html │ │ │ │ ├── functions_func.html │ │ │ │ ├── functions_func_b.html │ │ │ │ ├── functions_func_c.html │ │ │ │ ├── functions_func_d.html │ │ │ │ ├── functions_func_e.html │ │ │ │ ├── functions_func_f.html │ │ │ │ ├── functions_func_g.html │ │ │ │ ├── functions_func_h.html │ │ │ │ ├── functions_func_i.html │ │ │ │ ├── functions_func_k.html │ │ │ │ ├── functions_func_l.html │ │ │ │ ├── functions_func_m.html │ │ │ │ ├── functions_func_o.html │ │ │ │ ├── functions_func_p.html │ │ │ │ ├── functions_func_q.html │ │ │ │ ├── functions_func_r.html │ │ │ │ ├── functions_func_s.html │ │ │ │ ├── functions_func_t.html │ │ │ │ ├── functions_func_u.html │ │ │ │ ├── functions_func_v.html │ │ │ │ ├── functions_func_w.html │ │ │ │ ├── functions_func_z.html │ │ │ │ ├── functions_func_~.html │ │ │ │ ├── functions_g.html │ │ │ │ ├── functions_h.html │ │ │ │ ├── functions_i.html │ │ │ │ ├── functions_j.html │ │ │ │ ├── functions_k.html │ │ │ │ ├── functions_l.html │ │ │ │ ├── functions_m.html │ │ │ │ ├── functions_n.html │ │ │ │ ├── functions_o.html │ │ │ │ ├── functions_p.html │ │ │ │ ├── functions_q.html │ │ │ │ ├── functions_r.html │ │ │ │ ├── functions_s.html │ │ │ │ ├── functions_t.html │ │ │ │ ├── functions_u.html │ │ │ │ ├── functions_v.html │ │ │ │ ├── functions_w.html │ │ │ │ ├── functions_x.html │ │ │ │ ├── functions_z.html │ │ │ │ ├── functions_~.html │ │ │ │ ├── hierarchy.html │ │ │ │ ├── index.html │ │ │ │ ├── jquery.js │ │ │ │ ├── menu.js │ │ │ │ ├── menudata.js │ │ │ │ └── tabs.css │ │ │ └── qscintilla.dxy │ │ ├── qsci/ │ │ │ └── api/ │ │ │ └── python/ │ │ │ ├── Python-2.4.api │ │ │ ├── Python-2.5.api │ │ │ ├── Python-2.6.api │ │ │ ├── Python-2.7.api │ │ │ ├── Python-3.1.api │ │ │ ├── Python-3.2.api │ │ │ ├── Python-3.3.api │ │ │ ├── Python-3.4.api │ │ │ ├── Python-3.5.api │ │ │ ├── Python-3.6.api │ │ │ ├── Python-3.7.api │ │ │ ├── Python-3.8.api │ │ │ └── Python-3.9.api │ │ ├── scintilla/ │ │ │ ├── boostregex/ │ │ │ │ ├── AnsiDocumentIterator.h │ │ │ │ ├── BoostRegExSearch.cpp │ │ │ │ ├── UTF8DocumentIterator.cpp │ │ │ │ ├── UTF8DocumentIterator.h │ │ │ │ └── boost/ │ │ │ │ ├── assert/ │ │ │ │ │ └── source_location.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_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 │ │ │ │ ├── config.hpp │ │ │ │ ├── cstdint.hpp │ │ │ │ ├── current_function.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 │ │ │ │ │ │ ├── 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/ │ │ │ │ │ ├── concepts.hpp │ │ │ │ │ ├── config/ │ │ │ │ │ │ ├── borland.hpp │ │ │ │ │ │ └── cwchar.hpp │ │ │ │ │ ├── config.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.hpp │ │ │ │ ├── regex_fwd.hpp │ │ │ │ └── throw_exception.hpp │ │ │ ├── include/ │ │ │ │ ├── BoostRegexSearch.h │ │ │ │ ├── ILexer.h │ │ │ │ ├── ILoader.h │ │ │ │ ├── License.txt │ │ │ │ ├── Platform.h │ │ │ │ ├── SciLexer.h │ │ │ │ ├── Sci_Position.h │ │ │ │ ├── Scintilla.h │ │ │ │ ├── Scintilla.iface │ │ │ │ └── ScintillaWidget.h │ │ │ ├── lexers/ │ │ │ │ ├── LexA68k.cpp │ │ │ │ ├── LexAPDL.cpp │ │ │ │ ├── LexASY.cpp │ │ │ │ ├── LexAU3.cpp │ │ │ │ ├── LexAVE.cpp │ │ │ │ ├── LexAVS.cpp │ │ │ │ ├── LexAbaqus.cpp │ │ │ │ ├── LexAda.cpp │ │ │ │ ├── LexAsm.cpp │ │ │ │ ├── LexAsn1.cpp │ │ │ │ ├── LexBaan.cpp │ │ │ │ ├── LexBash.cpp │ │ │ │ ├── LexBasic.cpp │ │ │ │ ├── LexBatch.cpp │ │ │ │ ├── LexBibTeX.cpp │ │ │ │ ├── LexBullant.cpp │ │ │ │ ├── LexCLW.cpp │ │ │ │ ├── LexCOBOL.cpp │ │ │ │ ├── LexCPP.cpp │ │ │ │ ├── LexCSS.cpp │ │ │ │ ├── LexCaml.cpp │ │ │ │ ├── LexCmake.cpp │ │ │ │ ├── LexCoffeeScript.cpp │ │ │ │ ├── LexConf.cpp │ │ │ │ ├── LexCrontab.cpp │ │ │ │ ├── LexCsound.cpp │ │ │ │ ├── LexD.cpp │ │ │ │ ├── LexDMAP.cpp │ │ │ │ ├── LexDMIS.cpp │ │ │ │ ├── LexDiff.cpp │ │ │ │ ├── LexECL.cpp │ │ │ │ ├── LexEDIFACT.cpp │ │ │ │ ├── LexEScript.cpp │ │ │ │ ├── LexEiffel.cpp │ │ │ │ ├── LexErlang.cpp │ │ │ │ ├── LexErrorList.cpp │ │ │ │ ├── LexFlagship.cpp │ │ │ │ ├── LexForth.cpp │ │ │ │ ├── LexFortran.cpp │ │ │ │ ├── LexGAP.cpp │ │ │ │ ├── LexGui4Cli.cpp │ │ │ │ ├── LexHTML.cpp │ │ │ │ ├── LexHaskell.cpp │ │ │ │ ├── LexHex.cpp │ │ │ │ ├── LexIndent.cpp │ │ │ │ ├── LexInno.cpp │ │ │ │ ├── LexJSON.cpp │ │ │ │ ├── LexKVIrc.cpp │ │ │ │ ├── LexKix.cpp │ │ │ │ ├── LexLPeg.cpp │ │ │ │ ├── LexLaTeX.cpp │ │ │ │ ├── LexLisp.cpp │ │ │ │ ├── LexLout.cpp │ │ │ │ ├── LexLua.cpp │ │ │ │ ├── LexMMIXAL.cpp │ │ │ │ ├── LexMPT.cpp │ │ │ │ ├── LexMSSQL.cpp │ │ │ │ ├── LexMagik.cpp │ │ │ │ ├── LexMake.cpp │ │ │ │ ├── LexMarkdown.cpp │ │ │ │ ├── LexMatlab.cpp │ │ │ │ ├── LexMaxima.cpp │ │ │ │ ├── LexMetapost.cpp │ │ │ │ ├── LexModula.cpp │ │ │ │ ├── LexMySQL.cpp │ │ │ │ ├── LexNimrod.cpp │ │ │ │ ├── LexNsis.cpp │ │ │ │ ├── LexNull.cpp │ │ │ │ ├── LexOScript.cpp │ │ │ │ ├── LexOpal.cpp │ │ │ │ ├── LexPB.cpp │ │ │ │ ├── LexPLM.cpp │ │ │ │ ├── LexPO.cpp │ │ │ │ ├── LexPOV.cpp │ │ │ │ ├── LexPS.cpp │ │ │ │ ├── LexPascal.cpp │ │ │ │ ├── LexPerl.cpp │ │ │ │ ├── LexPowerPro.cpp │ │ │ │ ├── LexPowerShell.cpp │ │ │ │ ├── LexProgress.cpp │ │ │ │ ├── LexProps.cpp │ │ │ │ ├── LexPython.cpp │ │ │ │ ├── LexR.cpp │ │ │ │ ├── LexRebol.cpp │ │ │ │ ├── LexRegistry.cpp │ │ │ │ ├── LexRuby.cpp │ │ │ │ ├── LexRust.cpp │ │ │ │ ├── LexSAS.cpp │ │ │ │ ├── LexSML.cpp │ │ │ │ ├── LexSQL.cpp │ │ │ │ ├── LexSTTXT.cpp │ │ │ │ ├── LexScriptol.cpp │ │ │ │ ├── LexSmalltalk.cpp │ │ │ │ ├── LexSorcus.cpp │ │ │ │ ├── LexSpecman.cpp │ │ │ │ ├── LexSpice.cpp │ │ │ │ ├── LexStata.cpp │ │ │ │ ├── LexTACL.cpp │ │ │ │ ├── LexTADS3.cpp │ │ │ │ ├── LexTAL.cpp │ │ │ │ ├── LexTCL.cpp │ │ │ │ ├── LexTCMD.cpp │ │ │ │ ├── LexTXT.cpp │ │ │ │ ├── LexTeX.cpp │ │ │ │ ├── LexTxt2tags.cpp │ │ │ │ ├── LexVB.cpp │ │ │ │ ├── LexVHDL.cpp │ │ │ │ ├── LexVerilog.cpp │ │ │ │ ├── LexVisualProlog.cpp │ │ │ │ ├── LexYAML.cpp │ │ │ │ └── License.txt │ │ │ ├── lexlib/ │ │ │ │ ├── Accessor.cpp │ │ │ │ ├── Accessor.h │ │ │ │ ├── CharacterCategory.cpp │ │ │ │ ├── CharacterCategory.h │ │ │ │ ├── CharacterSet.cpp │ │ │ │ ├── CharacterSet.h │ │ │ │ ├── DefaultLexer.cpp │ │ │ │ ├── DefaultLexer.h │ │ │ │ ├── LexAccessor.h │ │ │ │ ├── LexerBase.cpp │ │ │ │ ├── LexerBase.h │ │ │ │ ├── LexerModule.cpp │ │ │ │ ├── LexerModule.h │ │ │ │ ├── LexerNoExceptions.cpp │ │ │ │ ├── LexerNoExceptions.h │ │ │ │ ├── LexerSimple.cpp │ │ │ │ ├── LexerSimple.h │ │ │ │ ├── License.txt │ │ │ │ ├── OptionSet.h │ │ │ │ ├── PropSetSimple.cpp │ │ │ │ ├── PropSetSimple.h │ │ │ │ ├── SparseState.h │ │ │ │ ├── StringCopy.h │ │ │ │ ├── StyleContext.cpp │ │ │ │ ├── StyleContext.h │ │ │ │ ├── SubStyles.h │ │ │ │ ├── WordList.cpp │ │ │ │ └── WordList.h │ │ │ └── src/ │ │ │ ├── AutoComplete.cpp │ │ │ ├── AutoComplete.h │ │ │ ├── CallTip.cpp │ │ │ ├── CallTip.h │ │ │ ├── CaseConvert.cpp │ │ │ ├── CaseConvert.h │ │ │ ├── CaseFolder.cpp │ │ │ ├── CaseFolder.h │ │ │ ├── Catalogue.cpp │ │ │ ├── Catalogue.h │ │ │ ├── CellBuffer.cpp │ │ │ ├── CellBuffer.h │ │ │ ├── CharClassify.cpp │ │ │ ├── CharClassify.h │ │ │ ├── ContractionState.cpp │ │ │ ├── ContractionState.h │ │ │ ├── DBCS.cpp │ │ │ ├── DBCS.h │ │ │ ├── Decoration.cpp │ │ │ ├── Decoration.h │ │ │ ├── Document.cpp │ │ │ ├── Document.h │ │ │ ├── EditModel.cpp │ │ │ ├── EditModel.h │ │ │ ├── EditView.cpp │ │ │ ├── EditView.h │ │ │ ├── Editor.cpp │ │ │ ├── Editor.h │ │ │ ├── ElapsedPeriod.h │ │ │ ├── ExternalLexer.cpp │ │ │ ├── ExternalLexer.h │ │ │ ├── FontQuality.h │ │ │ ├── Indicator.cpp │ │ │ ├── Indicator.h │ │ │ ├── IntegerRectangle.h │ │ │ ├── KeyMap.cpp │ │ │ ├── KeyMap.h │ │ │ ├── License.txt │ │ │ ├── LineMarker.cpp │ │ │ ├── LineMarker.h │ │ │ ├── MarginView.cpp │ │ │ ├── MarginView.h │ │ │ ├── Partitioning.h │ │ │ ├── PerLine.cpp │ │ │ ├── PerLine.h │ │ │ ├── Position.h │ │ │ ├── PositionCache.cpp │ │ │ ├── PositionCache.h │ │ │ ├── RESearch.cpp │ │ │ ├── RESearch.h │ │ │ ├── RunStyles.cpp │ │ │ ├── RunStyles.h │ │ │ ├── SciTE.properties │ │ │ ├── ScintillaBase.cpp │ │ │ ├── ScintillaBase.h │ │ │ ├── Selection.cpp │ │ │ ├── Selection.h │ │ │ ├── SparseVector.h │ │ │ ├── SplitVector.h │ │ │ ├── Style.cpp │ │ │ ├── Style.h │ │ │ ├── UniConversion.cpp │ │ │ ├── UniConversion.h │ │ │ ├── UniqueString.h │ │ │ ├── ViewStyle.cpp │ │ │ ├── ViewStyle.h │ │ │ ├── XPM.cpp │ │ │ └── XPM.h │ │ └── src/ │ │ ├── .qmake.stash │ │ ├── InputMethod.cpp │ │ ├── ListBoxQt.cpp │ │ ├── ListBoxQt.h │ │ ├── MacPasteboardMime.cpp │ │ ├── PlatQt.cpp │ │ ├── Qsci/ │ │ │ ├── qsciabstractapis.h │ │ │ ├── qsciapis.h │ │ │ ├── qscicommand.h │ │ │ ├── qscicommandset.h │ │ │ ├── qscidocument.h │ │ │ ├── qsciglobal.h │ │ │ ├── qscilexer.h │ │ │ ├── qscilexerasm.h │ │ │ ├── qscilexeravs.h │ │ │ ├── qscilexerbash.h │ │ │ ├── qscilexerbatch.h │ │ │ ├── qscilexercmake.h │ │ │ ├── qscilexercoffeescript.h │ │ │ ├── qscilexercpp.h │ │ │ ├── qscilexercsharp.h │ │ │ ├── qscilexercss.h │ │ │ ├── qscilexercustom.h │ │ │ ├── qscilexerd.h │ │ │ ├── qscilexerdiff.h │ │ │ ├── qscilexeredifact.h │ │ │ ├── qscilexerfortran.h │ │ │ ├── qscilexerfortran77.h │ │ │ ├── qscilexerglobal.h │ │ │ ├── qscilexergo.h │ │ │ ├── qscilexerhtml.h │ │ │ ├── qscilexeridl.h │ │ │ ├── qscilexerjava.h │ │ │ ├── qscilexerjavascript.h │ │ │ ├── qscilexerjson.h │ │ │ ├── qscilexerlua.h │ │ │ ├── qscilexermakefile.h │ │ │ ├── qscilexermarkdown.h │ │ │ ├── qscilexermatlab.h │ │ │ ├── qscilexernsis.h │ │ │ ├── qscilexeroctave.h │ │ │ ├── qscilexerpascal.h │ │ │ ├── qscilexerperl.h │ │ │ ├── qscilexerpo.h │ │ │ ├── qscilexerpostscript.h │ │ │ ├── qscilexerpov.h │ │ │ ├── qscilexerproperties.h │ │ │ ├── qscilexerpython.h │ │ │ ├── qscilexerr.h │ │ │ ├── qscilexerruby.h │ │ │ ├── qscilexerrust.h │ │ │ ├── qscilexerspice.h │ │ │ ├── qscilexersql.h │ │ │ ├── qscilexertcl.h │ │ │ ├── qscilexertex.h │ │ │ ├── qscilexertext.h │ │ │ ├── qscilexervb.h │ │ │ ├── qscilexerverilog.h │ │ │ ├── qscilexervhdl.h │ │ │ ├── qscilexerxml.h │ │ │ ├── qscilexeryaml.h │ │ │ ├── qscimacro.h │ │ │ ├── qsciprinter.h │ │ │ ├── qsciscintilla.h │ │ │ ├── qsciscintillabase.h │ │ │ ├── qscistyle.h │ │ │ └── qscistyledtext.h │ │ ├── SciAccessibility.cpp │ │ ├── SciAccessibility.h │ │ ├── SciClasses.cpp │ │ ├── SciClasses.h │ │ ├── ScintillaQt.cpp │ │ ├── ScintillaQt.h │ │ ├── features/ │ │ │ └── qscintilla2.prf │ │ ├── features_staticlib/ │ │ │ └── qscintilla2.prf │ │ ├── qsciabstractapis.cpp │ │ ├── qsciapis.cpp │ │ ├── qscicommand.cpp │ │ ├── qscicommandset.cpp │ │ ├── qscidocument.cpp │ │ ├── qscilexer.cpp │ │ ├── qscilexerasm.cpp │ │ ├── qscilexeravs.cpp │ │ ├── qscilexerbash.cpp │ │ ├── qscilexerbatch.cpp │ │ ├── qscilexercmake.cpp │ │ ├── qscilexercoffeescript.cpp │ │ ├── qscilexercpp.cpp │ │ ├── qscilexercsharp.cpp │ │ ├── qscilexercss.cpp │ │ ├── qscilexercustom.cpp │ │ ├── qscilexerd.cpp │ │ ├── qscilexerdiff.cpp │ │ ├── qscilexeredifact.cpp │ │ ├── qscilexerfortran.cpp │ │ ├── qscilexerfortran77.cpp │ │ ├── qscilexerglobal.cpp │ │ ├── qscilexergo.cpp │ │ ├── qscilexerhtml.cpp │ │ ├── qscilexeridl.cpp │ │ ├── qscilexerjava.cpp │ │ ├── qscilexerjavascript.cpp │ │ ├── qscilexerjson.cpp │ │ ├── qscilexerlua.cpp │ │ ├── qscilexermakefile.cpp │ │ ├── qscilexermarkdown.cpp │ │ ├── qscilexermatlab.cpp │ │ ├── qscilexernsis.cpp │ │ ├── qscilexeroctave.cpp │ │ ├── qscilexerpascal.cpp │ │ ├── qscilexerperl.cpp │ │ ├── qscilexerpo.cpp │ │ ├── qscilexerpostscript.cpp │ │ ├── qscilexerpov.cpp │ │ ├── qscilexerproperties.cpp │ │ ├── qscilexerpython.cpp │ │ ├── qscilexerr.cpp │ │ ├── qscilexerruby.cpp │ │ ├── qscilexerrust.cpp │ │ ├── qscilexerspice.cpp │ │ ├── qscilexersql.cpp │ │ ├── qscilexertcl.cpp │ │ ├── qscilexertex.cpp │ │ ├── qscilexertext.cpp │ │ ├── qscilexervb.cpp │ │ ├── qscilexerverilog.cpp │ │ ├── qscilexervhdl.cpp │ │ ├── qscilexerxml.cpp │ │ ├── qscilexeryaml.cpp │ │ ├── qscimacro.cpp │ │ ├── qscintilla.pro │ │ ├── qscintilla.vcxproj │ │ ├── qscintilla_ch.qm │ │ ├── qscintilla_ch.ts │ │ ├── qscintilla_cs.qm │ │ ├── qscintilla_cs.ts │ │ ├── qscintilla_de.qm │ │ ├── qscintilla_de.ts │ │ ├── qscintilla_es.qm │ │ ├── qscintilla_es.ts │ │ ├── qscintilla_fr.qm │ │ ├── qscintilla_fr.ts │ │ ├── qscintilla_pt_br.qm │ │ ├── qscintilla_pt_br.ts │ │ ├── qsciprinter.cpp │ │ ├── qsciscintilla.cpp │ │ ├── qsciscintillabase.cpp │ │ ├── qscistyle.cpp │ │ ├── qscistyledtext.cpp │ │ ├── xmlMatchedTagsHighlighter.cpp │ │ └── xmlMatchedTagsHighlighter.h │ ├── qss/ │ │ ├── black.qss │ │ ├── common.qss │ │ ├── flatgray.qss │ │ ├── lightblue.qss │ │ ├── lightbluestyle.qss │ │ ├── myblack.qss │ │ ├── mystyle.qss │ │ ├── mystyle_new.qss │ │ └── templetestyle.qss │ ├── qtlangset.cpp │ ├── qtlangset.h │ ├── qtlangset.ui │ ├── rcglobal.cpp │ ├── rcglobal.h │ ├── realcompare_zh.qm │ ├── realcompare_zh.ts │ ├── renamewin.cpp │ ├── renamewin.h │ ├── renamewin.ui │ ├── replacecommand.h │ ├── resource.h │ ├── rgba_icons.h │ ├── scintillaeditview.cpp │ ├── scintillaeditview.h │ ├── scintillahexeditview.cpp │ ├── scintillahexeditview.h │ ├── shortcutkeyeditwin.cpp │ ├── shortcutkeyeditwin.h │ ├── shortcutkeyeditwin.ui │ ├── shortcutkeymgr.cpp │ ├── shortcutkeymgr.h │ ├── shortcutkeymgr.ui │ ├── statuswidget.cpp │ ├── statuswidget.h │ ├── statuswidget.ui │ ├── styleset.cpp │ ├── styleset.h │ ├── texteditsetwin.cpp │ ├── texteditsetwin.h │ ├── texteditsetwin.ui │ ├── textfind.cpp │ ├── textfind.h │ ├── textfind.ui │ ├── themes/ │ │ ├── Bespin/ │ │ │ ├── AllGlobal.ini │ │ │ ├── asp.ini │ │ │ ├── bash.ini │ │ │ ├── batch.ini │ │ │ ├── c.ini │ │ │ ├── cmake.ini │ │ │ ├── cpp.ini │ │ │ ├── csharp.ini │ │ │ ├── css.ini │ │ │ ├── diff.ini │ │ │ ├── fortran.ini │ │ │ ├── fortran77.ini │ │ │ ├── html.ini │ │ │ ├── ini.ini │ │ │ ├── java.ini │ │ │ ├── javascript.ini │ │ │ ├── json.ini │ │ │ ├── lua.ini │ │ │ ├── makefile.ini │ │ │ ├── matlab.ini │ │ │ ├── nsis.ini │ │ │ ├── objc.ini │ │ │ ├── pascal.ini │ │ │ ├── perl.ini │ │ │ ├── php.ini │ │ │ ├── props.ini │ │ │ ├── python.ini │ │ │ ├── rc.ini │ │ │ ├── ruby.ini │ │ │ ├── sql.ini │ │ │ ├── tcl.ini │ │ │ ├── txt.ini │ │ │ ├── vb.ini │ │ │ ├── verilog.ini │ │ │ ├── vhdl.ini │ │ │ └── xml.ini │ │ ├── Black board/ │ │ │ ├── AllGlobal.ini │ │ │ ├── asp.ini │ │ │ ├── bash.ini │ │ │ ├── batch.ini │ │ │ ├── c.ini │ │ │ ├── cmake.ini │ │ │ ├── cpp.ini │ │ │ ├── csharp.ini │ │ │ ├── css.ini │ │ │ ├── diff.ini │ │ │ ├── fortran.ini │ │ │ ├── fortran77.ini │ │ │ ├── html.ini │ │ │ ├── ini.ini │ │ │ ├── java.ini │ │ │ ├── javascript.ini │ │ │ ├── json.ini │ │ │ ├── lua.ini │ │ │ ├── makefile.ini │ │ │ ├── matlab.ini │ │ │ ├── nsis.ini │ │ │ ├── objc.ini │ │ │ ├── pascal.ini │ │ │ ├── perl.ini │ │ │ ├── php.ini │ │ │ ├── props.ini │ │ │ ├── python.ini │ │ │ ├── rc.ini │ │ │ ├── ruby.ini │ │ │ ├── sql.ini │ │ │ ├── tcl.ini │ │ │ ├── txt.ini │ │ │ ├── vb.ini │ │ │ ├── verilog.ini │ │ │ ├── vhdl.ini │ │ │ └── xml.ini │ │ ├── Blue light/ │ │ │ ├── AllGlobal.ini │ │ │ ├── asp.ini │ │ │ ├── avs.ini │ │ │ ├── bash.ini │ │ │ ├── batch.ini │ │ │ ├── c.ini │ │ │ ├── cmake.ini │ │ │ ├── coffeescript.ini │ │ │ ├── cpp.ini │ │ │ ├── csharp.ini │ │ │ ├── css.ini │ │ │ ├── diff.ini │ │ │ ├── flash.ini │ │ │ ├── fortran.ini │ │ │ ├── fortran77.ini │ │ │ ├── go.ini │ │ │ ├── html.ini │ │ │ ├── idl.ini │ │ │ ├── ini.ini │ │ │ ├── java.ini │ │ │ ├── javascript.ini │ │ │ ├── json.ini │ │ │ ├── jsp.ini │ │ │ ├── lua.ini │ │ │ ├── makefile.ini │ │ │ ├── matlab.ini │ │ │ ├── nsis.ini │ │ │ ├── objc.ini │ │ │ ├── pascal.ini │ │ │ ├── perl.ini │ │ │ ├── php.ini │ │ │ ├── props.ini │ │ │ ├── python.ini │ │ │ ├── rc.ini │ │ │ ├── ruby.ini │ │ │ ├── rust.ini │ │ │ ├── spice.ini │ │ │ ├── sql.ini │ │ │ ├── tcl.ini │ │ │ ├── txt.ini │ │ │ ├── typescript.ini │ │ │ ├── vb.ini │ │ │ ├── verilog.ini │ │ │ ├── vhdl.ini │ │ │ ├── xml.ini │ │ │ └── yaml.ini │ │ ├── Choco/ │ │ │ ├── AllGlobal.ini │ │ │ ├── asp.ini │ │ │ ├── bash.ini │ │ │ ├── batch.ini │ │ │ ├── c.ini │ │ │ ├── cmake.ini │ │ │ ├── cpp.ini │ │ │ ├── csharp.ini │ │ │ ├── css.ini │ │ │ ├── diff.ini │ │ │ ├── fortran.ini │ │ │ ├── fortran77.ini │ │ │ ├── html.ini │ │ │ ├── ini.ini │ │ │ ├── java.ini │ │ │ ├── javascript.ini │ │ │ ├── json.ini │ │ │ ├── lua.ini │ │ │ ├── makefile.ini │ │ │ ├── matlab.ini │ │ │ ├── nsis.ini │ │ │ ├── objc.ini │ │ │ ├── pascal.ini │ │ │ ├── perl.ini │ │ │ ├── php.ini │ │ │ ├── props.ini │ │ │ ├── python.ini │ │ │ ├── rc.ini │ │ │ ├── ruby.ini │ │ │ ├── sql.ini │ │ │ ├── tcl.ini │ │ │ ├── txt.ini │ │ │ ├── vb.ini │ │ │ ├── verilog.ini │ │ │ ├── vhdl.ini │ │ │ └── xml.ini │ │ ├── DansLeRuSH-Dark/ │ │ │ ├── AllGlobal.ini │ │ │ ├── asp.ini │ │ │ ├── bash.ini │ │ │ ├── batch.ini │ │ │ ├── c.ini │ │ │ ├── cmake.ini │ │ │ ├── coffeescript.ini │ │ │ ├── cpp.ini │ │ │ ├── csharp.ini │ │ │ ├── css.ini │ │ │ ├── diff.ini │ │ │ ├── fortran.ini │ │ │ ├── fortran77.ini │ │ │ ├── html.ini │ │ │ ├── ini.ini │ │ │ ├── java.ini │ │ │ ├── javascript.ini │ │ │ ├── json.ini │ │ │ ├── lua.ini │ │ │ ├── makefile.ini │ │ │ ├── matlab.ini │ │ │ ├── nsis.ini │ │ │ ├── objc.ini │ │ │ ├── pascal.ini │ │ │ ├── perl.ini │ │ │ ├── php.ini │ │ │ ├── props.ini │ │ │ ├── python.ini │ │ │ ├── rc.ini │ │ │ ├── ruby.ini │ │ │ ├── sql.ini │ │ │ ├── tcl.ini │ │ │ ├── txt.ini │ │ │ ├── vb.ini │ │ │ ├── verilog.ini │ │ │ ├── vhdl.ini │ │ │ ├── xml.ini │ │ │ └── yaml.ini │ │ ├── Deep Black/ │ │ │ ├── AllGlobal.ini │ │ │ ├── asp.ini │ │ │ ├── bash.ini │ │ │ ├── batch.ini │ │ │ ├── c.ini │ │ │ ├── cmake.ini │ │ │ ├── cpp.ini │ │ │ ├── csharp.ini │ │ │ ├── css.ini │ │ │ ├── diff.ini │ │ │ ├── fortran.ini │ │ │ ├── fortran77.ini │ │ │ ├── html.ini │ │ │ ├── ini.ini │ │ │ ├── java.ini │ │ │ ├── javascript.ini │ │ │ ├── json.ini │ │ │ ├── lua.ini │ │ │ ├── makefile.ini │ │ │ ├── matlab.ini │ │ │ ├── nsis.ini │ │ │ ├── objc.ini │ │ │ ├── pascal.ini │ │ │ ├── perl.ini │ │ │ ├── php.ini │ │ │ ├── props.ini │ │ │ ├── python.ini │ │ │ ├── rc.ini │ │ │ ├── ruby.ini │ │ │ ├── sql.ini │ │ │ ├── tcl.ini │ │ │ ├── txt.ini │ │ │ ├── vb.ini │ │ │ ├── verilog.ini │ │ │ ├── vhdl.ini │ │ │ ├── xml.ini │ │ │ └── yaml.ini │ │ ├── HotFudgeSundae/ │ │ │ ├── AllGlobal.ini │ │ │ ├── asp.ini │ │ │ ├── bash.ini │ │ │ ├── batch.ini │ │ │ ├── c.ini │ │ │ ├── cmake.ini │ │ │ ├── coffeescript.ini │ │ │ ├── cpp.ini │ │ │ ├── csharp.ini │ │ │ ├── css.ini │ │ │ ├── diff.ini │ │ │ ├── fortran.ini │ │ │ ├── fortran77.ini │ │ │ ├── html.ini │ │ │ ├── ini.ini │ │ │ ├── java.ini │ │ │ ├── javascript.ini │ │ │ ├── json.ini │ │ │ ├── lua.ini │ │ │ ├── makefile.ini │ │ │ ├── matlab.ini │ │ │ ├── nsis.ini │ │ │ ├── objc.ini │ │ │ ├── pascal.ini │ │ │ ├── perl.ini │ │ │ ├── php.ini │ │ │ ├── props.ini │ │ │ ├── python.ini │ │ │ ├── rc.ini │ │ │ ├── ruby.ini │ │ │ ├── sql.ini │ │ │ ├── tcl.ini │ │ │ ├── txt.ini │ │ │ ├── vb.ini │ │ │ ├── verilog.ini │ │ │ ├── vhdl.ini │ │ │ ├── xml.ini │ │ │ └── yaml.ini │ │ ├── Mono Industrial/ │ │ │ ├── AllGlobal.ini │ │ │ ├── asp.ini │ │ │ ├── bash.ini │ │ │ ├── batch.ini │ │ │ ├── c.ini │ │ │ ├── cmake.ini │ │ │ ├── cpp.ini │ │ │ ├── csharp.ini │ │ │ ├── css.ini │ │ │ ├── diff.ini │ │ │ ├── fortran.ini │ │ │ ├── fortran77.ini │ │ │ ├── html.ini │ │ │ ├── ini.ini │ │ │ ├── java.ini │ │ │ ├── javascript.ini │ │ │ ├── json.ini │ │ │ ├── lua.ini │ │ │ ├── makefile.ini │ │ │ ├── matlab.ini │ │ │ ├── nsis.ini │ │ │ ├── objc.ini │ │ │ ├── pascal.ini │ │ │ ├── perl.ini │ │ │ ├── php.ini │ │ │ ├── props.ini │ │ │ ├── python.ini │ │ │ ├── rc.ini │ │ │ ├── ruby.ini │ │ │ ├── sql.ini │ │ │ ├── tcl.ini │ │ │ ├── txt.ini │ │ │ ├── vb.ini │ │ │ ├── verilog.ini │ │ │ ├── vhdl.ini │ │ │ └── xml.ini │ │ ├── Monokai/ │ │ │ ├── AllGlobal.ini │ │ │ ├── asp.ini │ │ │ ├── bash.ini │ │ │ ├── batch.ini │ │ │ ├── c.ini │ │ │ ├── cmake.ini │ │ │ ├── cpp.ini │ │ │ ├── csharp.ini │ │ │ ├── css.ini │ │ │ ├── diff.ini │ │ │ ├── fortran.ini │ │ │ ├── fortran77.ini │ │ │ ├── html.ini │ │ │ ├── ini.ini │ │ │ ├── java.ini │ │ │ ├── javascript.ini │ │ │ ├── json.ini │ │ │ ├── lua.ini │ │ │ ├── makefile.ini │ │ │ ├── matlab.ini │ │ │ ├── nsis.ini │ │ │ ├── objc.ini │ │ │ ├── pascal.ini │ │ │ ├── perl.ini │ │ │ ├── php.ini │ │ │ ├── props.ini │ │ │ ├── python.ini │ │ │ ├── rc.ini │ │ │ ├── ruby.ini │ │ │ ├── sql.ini │ │ │ ├── tcl.ini │ │ │ ├── txt.ini │ │ │ ├── vb.ini │ │ │ ├── verilog.ini │ │ │ ├── vhdl.ini │ │ │ └── xml.ini │ │ ├── Obsidian/ │ │ │ ├── AllGlobal.ini │ │ │ ├── asp.ini │ │ │ ├── bash.ini │ │ │ ├── batch.ini │ │ │ ├── c.ini │ │ │ ├── cmake.ini │ │ │ ├── cpp.ini │ │ │ ├── csharp.ini │ │ │ ├── css.ini │ │ │ ├── diff.ini │ │ │ ├── fortran.ini │ │ │ ├── fortran77.ini │ │ │ ├── html.ini │ │ │ ├── ini.ini │ │ │ ├── java.ini │ │ │ ├── javascript.ini │ │ │ ├── json.ini │ │ │ ├── lua.ini │ │ │ ├── makefile.ini │ │ │ ├── matlab.ini │ │ │ ├── nsis.ini │ │ │ ├── objc.ini │ │ │ ├── pascal.ini │ │ │ ├── perl.ini │ │ │ ├── php.ini │ │ │ ├── props.ini │ │ │ ├── python.ini │ │ │ ├── rc.ini │ │ │ ├── ruby.ini │ │ │ ├── sql.ini │ │ │ ├── tcl.ini │ │ │ ├── txt.ini │ │ │ ├── vb.ini │ │ │ ├── verilog.ini │ │ │ ├── vhdl.ini │ │ │ ├── xml.ini │ │ │ └── yaml.ini │ │ ├── Plastic Code Wrap/ │ │ │ ├── AllGlobal.ini │ │ │ ├── asp.ini │ │ │ ├── bash.ini │ │ │ ├── batch.ini │ │ │ ├── c.ini │ │ │ ├── cmake.ini │ │ │ ├── cpp.ini │ │ │ ├── csharp.ini │ │ │ ├── css.ini │ │ │ ├── diff.ini │ │ │ ├── fortran.ini │ │ │ ├── fortran77.ini │ │ │ ├── html.ini │ │ │ ├── ini.ini │ │ │ ├── java.ini │ │ │ ├── javascript.ini │ │ │ ├── json.ini │ │ │ ├── lua.ini │ │ │ ├── makefile.ini │ │ │ ├── matlab.ini │ │ │ ├── nsis.ini │ │ │ ├── objc.ini │ │ │ ├── pascal.ini │ │ │ ├── perl.ini │ │ │ ├── php.ini │ │ │ ├── props.ini │ │ │ ├── python.ini │ │ │ ├── rc.ini │ │ │ ├── ruby.ini │ │ │ ├── sql.ini │ │ │ ├── tcl.ini │ │ │ ├── txt.ini │ │ │ ├── vb.ini │ │ │ ├── verilog.ini │ │ │ ├── vhdl.ini │ │ │ └── xml.ini │ │ ├── Ruby Blue/ │ │ │ ├── AllGlobal.ini │ │ │ ├── asp.ini │ │ │ ├── bash.ini │ │ │ ├── batch.ini │ │ │ ├── c.ini │ │ │ ├── cpp.ini │ │ │ ├── csharp.ini │ │ │ ├── css.ini │ │ │ ├── diff.ini │ │ │ ├── fortran.ini │ │ │ ├── fortran77.ini │ │ │ ├── html.ini │ │ │ ├── ini.ini │ │ │ ├── java.ini │ │ │ ├── javascript.ini │ │ │ ├── json.ini │ │ │ ├── lua.ini │ │ │ ├── makefile.ini │ │ │ ├── nsis.ini │ │ │ ├── objc.ini │ │ │ ├── pascal.ini │ │ │ ├── perl.ini │ │ │ ├── php.ini │ │ │ ├── props.ini │ │ │ ├── python.ini │ │ │ ├── rc.ini │ │ │ ├── ruby.ini │ │ │ ├── sql.ini │ │ │ ├── tcl.ini │ │ │ ├── txt.ini │ │ │ ├── vb.ini │ │ │ ├── vhdl.ini │ │ │ └── xml.ini │ │ ├── Twilight/ │ │ │ ├── AllGlobal.ini │ │ │ ├── asp.ini │ │ │ ├── bash.ini │ │ │ ├── batch.ini │ │ │ ├── c.ini │ │ │ ├── cmake.ini │ │ │ ├── cpp.ini │ │ │ ├── csharp.ini │ │ │ ├── css.ini │ │ │ ├── diff.ini │ │ │ ├── fortran.ini │ │ │ ├── fortran77.ini │ │ │ ├── html.ini │ │ │ ├── ini.ini │ │ │ ├── java.ini │ │ │ ├── javascript.ini │ │ │ ├── json.ini │ │ │ ├── lua.ini │ │ │ ├── makefile.ini │ │ │ ├── matlab.ini │ │ │ ├── nsis.ini │ │ │ ├── objc.ini │ │ │ ├── pascal.ini │ │ │ ├── perl.ini │ │ │ ├── php.ini │ │ │ ├── props.ini │ │ │ ├── python.ini │ │ │ ├── rc.ini │ │ │ ├── ruby.ini │ │ │ ├── sql.ini │ │ │ ├── tcl.ini │ │ │ ├── txt.ini │ │ │ ├── vb.ini │ │ │ ├── verilog.ini │ │ │ ├── vhdl.ini │ │ │ └── xml.ini │ │ ├── Vibrant Ink/ │ │ │ ├── AllGlobal.ini │ │ │ ├── asp.ini │ │ │ ├── bash.ini │ │ │ ├── batch.ini │ │ │ ├── c.ini │ │ │ ├── cmake.ini │ │ │ ├── cpp.ini │ │ │ ├── csharp.ini │ │ │ ├── css.ini │ │ │ ├── diff.ini │ │ │ ├── fortran.ini │ │ │ ├── fortran77.ini │ │ │ ├── html.ini │ │ │ ├── ini.ini │ │ │ ├── java.ini │ │ │ ├── javascript.ini │ │ │ ├── json.ini │ │ │ ├── lua.ini │ │ │ ├── makefile.ini │ │ │ ├── matlab.ini │ │ │ ├── nsis.ini │ │ │ ├── objc.ini │ │ │ ├── pascal.ini │ │ │ ├── perl.ini │ │ │ ├── php.ini │ │ │ ├── props.ini │ │ │ ├── python.ini │ │ │ ├── rc.ini │ │ │ ├── ruby.ini │ │ │ ├── sql.ini │ │ │ ├── tcl.ini │ │ │ ├── txt.ini │ │ │ ├── vb.ini │ │ │ ├── verilog.ini │ │ │ ├── vhdl.ini │ │ │ └── xml.ini │ │ ├── lavender/ │ │ │ ├── AllGlobal.ini │ │ │ ├── asp.ini │ │ │ ├── avs.ini │ │ │ ├── bash.ini │ │ │ ├── batch.ini │ │ │ ├── c.ini │ │ │ ├── cmake.ini │ │ │ ├── coffeescript.ini │ │ │ ├── cpp.ini │ │ │ ├── csharp.ini │ │ │ ├── css.ini │ │ │ ├── diff.ini │ │ │ ├── flash.ini │ │ │ ├── fortran.ini │ │ │ ├── fortran77.ini │ │ │ ├── go.ini │ │ │ ├── html.ini │ │ │ ├── idl.ini │ │ │ ├── ini.ini │ │ │ ├── java.ini │ │ │ ├── javascript.ini │ │ │ ├── json.ini │ │ │ ├── jsp.ini │ │ │ ├── lua.ini │ │ │ ├── makefile.ini │ │ │ ├── matlab.ini │ │ │ ├── nsis.ini │ │ │ ├── objc.ini │ │ │ ├── pascal.ini │ │ │ ├── perl.ini │ │ │ ├── php.ini │ │ │ ├── props.ini │ │ │ ├── python.ini │ │ │ ├── rc.ini │ │ │ ├── ruby.ini │ │ │ ├── rust.ini │ │ │ ├── spice.ini │ │ │ ├── sql.ini │ │ │ ├── tcl.ini │ │ │ ├── txt.ini │ │ │ ├── typescript.ini │ │ │ ├── vb.ini │ │ │ ├── verilog.ini │ │ │ ├── vhdl.ini │ │ │ ├── xml.ini │ │ │ └── yaml.ini │ │ ├── misty rose/ │ │ │ ├── AllGlobal.ini │ │ │ ├── asp.ini │ │ │ ├── avs.ini │ │ │ ├── bash.ini │ │ │ ├── batch.ini │ │ │ ├── c.ini │ │ │ ├── cmake.ini │ │ │ ├── coffeescript.ini │ │ │ ├── cpp.ini │ │ │ ├── csharp.ini │ │ │ ├── css.ini │ │ │ ├── diff.ini │ │ │ ├── flash.ini │ │ │ ├── fortran.ini │ │ │ ├── fortran77.ini │ │ │ ├── go.ini │ │ │ ├── html.ini │ │ │ ├── idl.ini │ │ │ ├── ini.ini │ │ │ ├── java.ini │ │ │ ├── javascript.ini │ │ │ ├── json.ini │ │ │ ├── jsp.ini │ │ │ ├── lua.ini │ │ │ ├── makefile.ini │ │ │ ├── matlab.ini │ │ │ ├── nsis.ini │ │ │ ├── objc.ini │ │ │ ├── pascal.ini │ │ │ ├── perl.ini │ │ │ ├── php.ini │ │ │ ├── props.ini │ │ │ ├── python.ini │ │ │ ├── rc.ini │ │ │ ├── ruby.ini │ │ │ ├── rust.ini │ │ │ ├── spice.ini │ │ │ ├── sql.ini │ │ │ ├── tcl.ini │ │ │ ├── txt.ini │ │ │ ├── typescript.ini │ │ │ ├── vb.ini │ │ │ ├── verilog.ini │ │ │ ├── vhdl.ini │ │ │ ├── xml.ini │ │ │ └── yaml.ini │ │ └── yellow rice/ │ │ ├── AllGlobal.ini │ │ ├── asp.ini │ │ ├── avs.ini │ │ ├── bash.ini │ │ ├── batch.ini │ │ ├── c.ini │ │ ├── cmake.ini │ │ ├── coffeescript.ini │ │ ├── cpp.ini │ │ ├── csharp.ini │ │ ├── css.ini │ │ ├── diff.ini │ │ ├── flash.ini │ │ ├── fortran.ini │ │ ├── fortran77.ini │ │ ├── go.ini │ │ ├── html.ini │ │ ├── idl.ini │ │ ├── ini.ini │ │ ├── java.ini │ │ ├── javascript.ini │ │ ├── json.ini │ │ ├── jsp.ini │ │ ├── lua.ini │ │ ├── makefile.ini │ │ ├── matlab.ini │ │ ├── nsis.ini │ │ ├── objc.ini │ │ ├── pascal.ini │ │ ├── perl.ini │ │ ├── php.ini │ │ ├── props.ini │ │ ├── python.ini │ │ ├── rc.ini │ │ ├── ruby.ini │ │ ├── rust.ini │ │ ├── spice.ini │ │ ├── sql.ini │ │ ├── tcl.ini │ │ ├── txt.ini │ │ ├── typescript.ini │ │ ├── vb.ini │ │ ├── verilog.ini │ │ ├── vhdl.ini │ │ ├── xml.ini │ │ └── yaml.ini │ ├── userlexdef.cpp │ └── userlexdef.h ├── win.bat ├── win.mk ├── 插件编程开发说明.docx └── 编译说明.docx