gitextract_j16isbcq/ ├── .gitignore ├── .travis.yml ├── 3rdpart/ │ ├── astyle/ │ │ ├── ASBeautifier.cpp │ │ ├── ASEnhancer.cpp │ │ ├── ASFormatter.cpp │ │ ├── ASLocalizer.cpp │ │ ├── ASLocalizer.h │ │ ├── ASResource.cpp │ │ ├── astyle.h │ │ ├── astyle.pri │ │ ├── astyle_main.cpp │ │ └── astyle_main.h │ ├── backward/ │ │ ├── backward.cpp │ │ ├── backward.hpp │ │ └── backward.pri │ ├── hoedown/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── hoedown.def │ │ ├── hoedown.pri │ │ ├── html_block_names.gperf │ │ └── src/ │ │ ├── autolink.c │ │ ├── autolink.h │ │ ├── buffer.c │ │ ├── buffer.h │ │ ├── document.c │ │ ├── document.h │ │ ├── escape.c │ │ ├── escape.h │ │ ├── hodedown_version.c │ │ ├── html.c │ │ ├── html.h │ │ ├── html_blocks.c │ │ ├── html_smartypants.c │ │ ├── stack.c │ │ ├── stack.h │ │ └── version.h │ ├── qdarkstyle/ │ │ ├── qdarkstype.pri │ │ ├── style.qrc │ │ └── style.qss │ ├── qhexview/ │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── include/ │ │ │ └── QHexView.h │ │ ├── qhexview.pri │ │ └── src/ │ │ └── QHexView.cpp │ └── qt-mustache-master/ │ ├── .gitignore │ ├── .travis.yml │ ├── README.md │ ├── qt-mustache.pri │ ├── qt-mustache.pro │ ├── src/ │ │ ├── mustache.cpp │ │ └── mustache.h │ └── tests/ │ ├── partial.mustache │ ├── specs/ │ │ ├── comments.json │ │ ├── comments.yml │ │ ├── delimiters.json │ │ ├── delimiters.yml │ │ ├── interpolation.json │ │ ├── interpolation.yml │ │ ├── inverted.json │ │ ├── inverted.yml │ │ ├── partials.json │ │ ├── partials.yml │ │ ├── sections.json │ │ └── sections.yml │ ├── test_mustache.cpp │ └── test_mustache.h ├── LICENSE ├── README.md ├── ci/ │ ├── BuildQSCI.mk │ ├── extract-qt-installer │ ├── qt-installer-silent.js │ ├── qt5124-linux-packages │ ├── qt5129-linux-packages │ ├── tests-ci.sh │ └── tests-environment.sh ├── docs/ │ ├── DIFF_TEMPLATES.md │ └── TOOL_CMDLINE.md ├── embedded-ide.pro ├── ide/ │ ├── appconfig.cpp │ ├── appconfig.h │ ├── binaryviewer.cpp │ ├── binaryviewer.h │ ├── buildmanager.cpp │ ├── buildmanager.h │ ├── buttoneditoritemdelegate.h │ ├── childprocess.cpp │ ├── childprocess.h │ ├── clangautocompletionprovider.cpp │ ├── clangautocompletionprovider.h │ ├── codetexteditor.cpp │ ├── codetexteditor.h │ ├── configwidget.cpp │ ├── configwidget.h │ ├── configwidget.ui │ ├── consoleinterceptor.cpp │ ├── consoleinterceptor.h │ ├── cpptexteditor.cpp │ ├── cpptexteditor.h │ ├── documentmanager.cpp │ ├── documentmanager.h │ ├── envinputdialog.cpp │ ├── envinputdialog.h │ ├── envinputdialog.ui │ ├── externaltoolmanager.cpp │ ├── externaltoolmanager.h │ ├── externaltoolmanager.ui │ ├── filereferencesdialog.cpp │ ├── filereferencesdialog.h │ ├── filereferencesdialog.ui │ ├── filesystemmanager.cpp │ ├── filesystemmanager.h │ ├── findandopenfiledialog.cpp │ ├── findandopenfiledialog.h │ ├── findandopenfiledialog.ui │ ├── findinfilesdialog.cpp │ ├── findinfilesdialog.h │ ├── findinfilesdialog.ui │ ├── findlineedit.cpp │ ├── findlineedit.h │ ├── findmakefiledialog.cpp │ ├── findmakefiledialog.h │ ├── findmakefiledialog.ui │ ├── formfindreplace.cpp │ ├── formfindreplace.h │ ├── formfindreplace.ui │ ├── icodemodelprovider.cpp │ ├── icodemodelprovider.h │ ├── ide.pro │ ├── idocumenteditor.cpp │ ├── idocumenteditor.h │ ├── imageviewer.cpp │ ├── imageviewer.h │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ ├── mapfileviewer.cpp │ ├── mapfileviewer.h │ ├── markdowneditor.cpp │ ├── markdowneditor.h │ ├── markdownview.cpp │ ├── markdownview.h │ ├── newprojectdialog.cpp │ ├── newprojectdialog.h │ ├── newprojectdialog.ui │ ├── newprojectfromremotedialog.cpp │ ├── newprojectfromremotedialog.h │ ├── newprojectfromremotedialog.ui │ ├── plaintexteditor.cpp │ ├── plaintexteditor.h │ ├── processlinebufferizer.cpp │ ├── processlinebufferizer.h │ ├── processmanager.cpp │ ├── processmanager.h │ ├── projectmanager.cpp │ ├── projectmanager.h │ ├── regexhtmltranslator.cpp │ ├── regexhtmltranslator.h │ ├── resources/ │ │ ├── default-global.json │ │ ├── default-local.json │ │ ├── fonts.qrc │ │ ├── iconactions.qrc │ │ ├── images/ │ │ │ ├── dark/ │ │ │ │ └── index.theme │ │ │ └── light/ │ │ │ └── index.theme │ │ ├── kinds.qrc │ │ ├── mimetypes.qrc │ │ ├── reference-code.c │ │ ├── resources.qrc │ │ ├── styles/ │ │ │ ├── Bespin.xml │ │ │ ├── Black board.xml │ │ │ ├── Choco.xml │ │ │ ├── Deep Black.xml │ │ │ ├── Default.xml │ │ │ ├── Hello Kitty.xml │ │ │ ├── HotFudgeSundae.xml │ │ │ ├── Material-Dark.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 │ │ │ ├── tomorrow.xml │ │ │ └── vim Dark Blue.xml │ │ ├── styles.qrc │ │ └── templates/ │ │ └── empty.template │ ├── skeleton/ │ │ ├── bin/ │ │ │ ├── ftdi_rules.sh │ │ │ └── qt.conf │ │ ├── desktop-integration.sh │ │ ├── embedded-ide.desktop │ │ ├── embedded-ide.hardconf │ │ ├── embedded-ide.sh │ │ ├── embedded-ide.sh.wrapper │ │ └── ftdi-tools.sh │ ├── tar.h │ ├── templatefile.cpp │ ├── templatefile.h │ ├── templateitemwidget.cpp │ ├── templateitemwidget.h │ ├── templateitemwidget.ui │ ├── templatemanager.cpp │ ├── templatemanager.h │ ├── templatemanager.ui │ ├── textmessagebrocker.cpp │ ├── textmessagebrocker.h │ ├── translations/ │ │ └── es.ts │ ├── unsavedfilesdialog.cpp │ ├── unsavedfilesdialog.h │ ├── unsavedfilesdialog.ui │ ├── version.cpp │ └── version.h ├── mapview/ │ ├── main.cpp │ ├── mapview.pri │ ├── mapview.pro │ ├── mapviewmodel.cpp │ └── mapviewmodel.h ├── old/ │ ├── .gitignore │ ├── 3rdpart/ │ │ ├── QHexEdit/ │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── qhexedit.cpp │ │ │ ├── qhexedit.h │ │ │ ├── qhexedit.pri │ │ │ ├── qhexeditcomments.cpp │ │ │ ├── qhexeditcomments.h │ │ │ ├── qhexeditdata.cpp │ │ │ ├── qhexeditdata.h │ │ │ ├── qhexeditdatadevice.cpp │ │ │ ├── qhexeditdatadevice.h │ │ │ ├── qhexeditdatareader.cpp │ │ │ ├── qhexeditdatareader.h │ │ │ ├── qhexeditdatawriter.cpp │ │ │ ├── qhexeditdatawriter.h │ │ │ ├── qhexedithighlighter.cpp │ │ │ ├── qhexedithighlighter.h │ │ │ ├── qhexeditprivate.cpp │ │ │ ├── qhexeditprivate.h │ │ │ ├── sparserangemap.cpp │ │ │ └── sparserangemap.h │ │ ├── astyle/ │ │ │ ├── ASBeautifier.cpp │ │ │ ├── ASEnhancer.cpp │ │ │ ├── ASFormatter.cpp │ │ │ ├── ASLocalizer.cpp │ │ │ ├── ASLocalizer.h │ │ │ ├── ASResource.cpp │ │ │ ├── astyle.h │ │ │ ├── astyle.pri │ │ │ ├── astyle_main.cpp │ │ │ └── astyle_main.h │ │ ├── gdbdebugger/ │ │ │ ├── gdbdebugger.cpp │ │ │ ├── gdbdebugger.h │ │ │ └── gdbdebugger.pri │ │ ├── qscintilla/ │ │ │ ├── ChangeLog │ │ │ ├── LICENSE │ │ │ ├── NEWS │ │ │ ├── Qt4Qt5/ │ │ │ │ ├── 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 │ │ │ │ │ ├── qscilexeravs.h │ │ │ │ │ ├── qscilexerbash.h │ │ │ │ │ ├── qscilexerbatch.h │ │ │ │ │ ├── qscilexercmake.h │ │ │ │ │ ├── qscilexercoffeescript.h │ │ │ │ │ ├── qscilexercpp.h │ │ │ │ │ ├── qscilexercsharp.h │ │ │ │ │ ├── qscilexercss.h │ │ │ │ │ ├── qscilexercustom.h │ │ │ │ │ ├── qscilexerd.h │ │ │ │ │ ├── qscilexerdiff.h │ │ │ │ │ ├── qscilexerfortran.h │ │ │ │ │ ├── qscilexerfortran77.h │ │ │ │ │ ├── qscilexerhtml.h │ │ │ │ │ ├── qscilexeridl.h │ │ │ │ │ ├── qscilexerjava.h │ │ │ │ │ ├── qscilexerjavascript.h │ │ │ │ │ ├── qscilexerjson.h │ │ │ │ │ ├── qscilexerlua.h │ │ │ │ │ ├── qscilexermakefile.h │ │ │ │ │ ├── qscilexermarkdown.h │ │ │ │ │ ├── qscilexermatlab.h │ │ │ │ │ ├── qscilexeroctave.h │ │ │ │ │ ├── qscilexerpascal.h │ │ │ │ │ ├── qscilexerperl.h │ │ │ │ │ ├── qscilexerpo.h │ │ │ │ │ ├── qscilexerpostscript.h │ │ │ │ │ ├── qscilexerpov.h │ │ │ │ │ ├── qscilexerproperties.h │ │ │ │ │ ├── qscilexerpython.h │ │ │ │ │ ├── qscilexerruby.h │ │ │ │ │ ├── qscilexerspice.h │ │ │ │ │ ├── qscilexersql.h │ │ │ │ │ ├── qscilexertcl.h │ │ │ │ │ ├── qscilexertex.h │ │ │ │ │ ├── qscilexerverilog.h │ │ │ │ │ ├── qscilexervhdl.h │ │ │ │ │ ├── qscilexerxml.h │ │ │ │ │ ├── qscilexeryaml.h │ │ │ │ │ ├── qscimacro.h │ │ │ │ │ ├── qsciprinter.h │ │ │ │ │ ├── qsciscintilla.h │ │ │ │ │ ├── qsciscintillabase.h │ │ │ │ │ ├── qscistyle.h │ │ │ │ │ └── qscistyledtext.h │ │ │ │ ├── SciClasses.cpp │ │ │ │ ├── SciClasses.h │ │ │ │ ├── SciNamespace.h │ │ │ │ ├── ScintillaQt.cpp │ │ │ │ ├── ScintillaQt.h │ │ │ │ ├── features/ │ │ │ │ │ └── qscintilla2.prf │ │ │ │ ├── features_staticlib/ │ │ │ │ │ └── qscintilla2.prf │ │ │ │ ├── qsciabstractapis.cpp │ │ │ │ ├── qsciapis.cpp │ │ │ │ ├── qscicommand.cpp │ │ │ │ ├── qscicommandset.cpp │ │ │ │ ├── qscidocument.cpp │ │ │ │ ├── qscilexer.cpp │ │ │ │ ├── qscilexeravs.cpp │ │ │ │ ├── qscilexerbash.cpp │ │ │ │ ├── qscilexerbatch.cpp │ │ │ │ ├── qscilexercmake.cpp │ │ │ │ ├── qscilexercoffeescript.cpp │ │ │ │ ├── qscilexercpp.cpp │ │ │ │ ├── qscilexercsharp.cpp │ │ │ │ ├── qscilexercss.cpp │ │ │ │ ├── qscilexercustom.cpp │ │ │ │ ├── qscilexerd.cpp │ │ │ │ ├── qscilexerdiff.cpp │ │ │ │ ├── qscilexerfortran.cpp │ │ │ │ ├── qscilexerfortran77.cpp │ │ │ │ ├── qscilexerhtml.cpp │ │ │ │ ├── qscilexeridl.cpp │ │ │ │ ├── qscilexerjava.cpp │ │ │ │ ├── qscilexerjavascript.cpp │ │ │ │ ├── qscilexerjson.cpp │ │ │ │ ├── qscilexerlua.cpp │ │ │ │ ├── qscilexermakefile.cpp │ │ │ │ ├── qscilexermarkdown.cpp │ │ │ │ ├── qscilexermatlab.cpp │ │ │ │ ├── qscilexeroctave.cpp │ │ │ │ ├── qscilexerpascal.cpp │ │ │ │ ├── qscilexerperl.cpp │ │ │ │ ├── qscilexerpo.cpp │ │ │ │ ├── qscilexerpostscript.cpp │ │ │ │ ├── qscilexerpov.cpp │ │ │ │ ├── qscilexerproperties.cpp │ │ │ │ ├── qscilexerpython.cpp │ │ │ │ ├── qscilexerruby.cpp │ │ │ │ ├── qscilexerspice.cpp │ │ │ │ ├── qscilexersql.cpp │ │ │ │ ├── qscilexertcl.cpp │ │ │ │ ├── qscilexertex.cpp │ │ │ │ ├── qscilexerverilog.cpp │ │ │ │ ├── qscilexervhdl.cpp │ │ │ │ ├── qscilexerxml.cpp │ │ │ │ ├── qscilexeryaml.cpp │ │ │ │ ├── qscimacro.cpp │ │ │ │ ├── qscintilla.pro │ │ │ │ ├── qscintilla_cs.ts │ │ │ │ ├── qscintilla_de.ts │ │ │ │ ├── qscintilla_es.ts │ │ │ │ ├── qscintilla_fr.ts │ │ │ │ ├── qscintilla_pt_br.ts │ │ │ │ ├── qsciprinter.cpp │ │ │ │ ├── qsciscintilla.cpp │ │ │ │ ├── qsciscintillabase.cpp │ │ │ │ ├── qscistyle.cpp │ │ │ │ └── qscistyledtext.cpp │ │ │ ├── README │ │ │ ├── include/ │ │ │ │ ├── ILexer.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 │ │ │ │ ├── LexInno.cpp │ │ │ │ ├── LexJSON.cpp │ │ │ │ ├── LexKVIrc.cpp │ │ │ │ ├── LexKix.cpp │ │ │ │ ├── LexLaTeX.cpp │ │ │ │ ├── LexLisp.cpp │ │ │ │ ├── LexLout.cpp │ │ │ │ ├── LexLua.cpp │ │ │ │ ├── LexMMIXAL.cpp │ │ │ │ ├── LexMPT.cpp │ │ │ │ ├── LexMSSQL.cpp │ │ │ │ ├── LexMagik.cpp │ │ │ │ ├── LexMake.cpp │ │ │ │ ├── LexMarkdown.cpp │ │ │ │ ├── LexMatlab.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 │ │ │ │ ├── LexSML.cpp │ │ │ │ ├── LexSQL.cpp │ │ │ │ ├── LexSTTXT.cpp │ │ │ │ ├── LexScriptol.cpp │ │ │ │ ├── LexSmalltalk.cpp │ │ │ │ ├── LexSorcus.cpp │ │ │ │ ├── LexSpecman.cpp │ │ │ │ ├── LexSpice.cpp │ │ │ │ ├── LexTACL.cpp │ │ │ │ ├── LexTADS3.cpp │ │ │ │ ├── LexTAL.cpp │ │ │ │ ├── LexTCL.cpp │ │ │ │ ├── LexTCMD.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 │ │ │ │ ├── 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 │ │ │ ├── qscintilla.pri │ │ │ └── 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 │ │ │ ├── Decoration.cpp │ │ │ ├── Decoration.h │ │ │ ├── Document.cpp │ │ │ ├── Document.h │ │ │ ├── EditModel.cpp │ │ │ ├── EditModel.h │ │ │ ├── EditView.cpp │ │ │ ├── EditView.h │ │ │ ├── Editor.cpp │ │ │ ├── Editor.h │ │ │ ├── ExternalLexer.cpp │ │ │ ├── ExternalLexer.h │ │ │ ├── FontQuality.h │ │ │ ├── Indicator.cpp │ │ │ ├── Indicator.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 │ │ │ ├── UnicodeFromUTF8.h │ │ │ ├── ViewStyle.cpp │ │ │ ├── ViewStyle.h │ │ │ ├── XPM.cpp │ │ │ └── XPM.h │ │ └── qtc_gdbmi/ │ │ ├── gdbmi.cpp │ │ ├── gdbmi.h │ │ └── qtc_gdbmi.pri │ ├── aboutdialog.cpp │ ├── aboutdialog.h │ ├── aboutdialog.ui │ ├── appconfig.cpp │ ├── appconfig.h │ ├── bannerwidget.cpp │ ├── bannerwidget.h │ ├── bannerwidget.ui │ ├── clangcodecontext.cpp │ ├── clangcodecontext.h │ ├── codeeditor.cpp │ ├── codeeditor.h │ ├── codetemplate.cpp │ ├── codetemplate.h │ ├── combodocumentview.cpp │ ├── combodocumentview.h │ ├── componentitemwidget.cpp │ ├── componentitemwidget.h │ ├── componentitemwidget.ui │ ├── componentsdialog.cpp │ ├── componentsdialog.h │ ├── componentsdialog.ui │ ├── configdialog.cpp │ ├── configdialog.h │ ├── configdialog.ui │ ├── debugui.cpp │ ├── debugui.h │ ├── debugui.ui │ ├── dialogconfigworkspace.cpp │ ├── dialogconfigworkspace.h │ ├── dialogconfigworkspace.ui │ ├── documentarea.cpp │ ├── documentarea.h │ ├── editorwidget.ui │ ├── embedded-ide.desktop │ ├── etags.cpp │ ├── etags.h │ ├── filedownloader.cpp │ ├── filedownloader.h │ ├── filepropertiesdialog.cpp │ ├── filepropertiesdialog.h │ ├── filepropertiesdialog.ui │ ├── findinfilesdialog.cpp │ ├── findinfilesdialog.h │ ├── findinfilesdialog.ui │ ├── findlineedit.cpp │ ├── findlineedit.h │ ├── formfindreplace.cpp │ ├── formfindreplace.h │ ├── formfindreplace.ui │ ├── gdbstartdialog.cpp │ ├── gdbstartdialog.h │ ├── gdbstartdialog.ui │ ├── i18n/ │ │ ├── es.ts │ │ └── zh.ts │ ├── ide.pro │ ├── loggerwidget.cpp │ ├── loggerwidget.h │ ├── main.cpp │ ├── mainmenuwidget.cpp │ ├── mainmenuwidget.h │ ├── mainmenuwidget.ui │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ ├── make2compilationdb.sh │ ├── makefileinfo.cpp │ ├── makefileinfo.h │ ├── mapviewer.cpp │ ├── mapviewer.h │ ├── mapviewer.ui │ ├── passwordpromtdialog.cpp │ ├── passwordpromtdialog.h │ ├── passwordpromtdialog.ui │ ├── projectexporter.cpp │ ├── projectexporter.h │ ├── projecticonprovider.cpp │ ├── projecticonprovider.h │ ├── projectnewdialog.cpp │ ├── projectnewdialog.h │ ├── projectnewdialog.ui │ ├── projectview.cpp │ ├── projectview.h │ ├── projectview.ui │ ├── projetfromtemplate.cpp │ ├── projetfromtemplate.h │ ├── qsvtextoperationswidget.cpp │ ├── qsvtextoperationswidget.h │ ├── qtdialog/ │ │ ├── main.cpp │ │ └── qtdialog.pro │ ├── replaceform.ui │ ├── resources/ │ │ ├── project-filters.txt │ │ ├── reference-code.c │ │ ├── resources.qrc │ │ ├── style.css │ │ ├── styles/ │ │ │ ├── Bespin.xml │ │ │ ├── Black board.xml │ │ │ ├── Choco.xml │ │ │ ├── Deep Black.xml │ │ │ ├── Default.xml │ │ │ ├── Hello Kitty.xml │ │ │ ├── HotFudgeSundae.xml │ │ │ ├── Material-Dark.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 │ │ └── templates/ │ │ ├── empty.template │ │ ├── gcc-exec.template │ │ ├── lpcopen-picociaa.template │ │ ├── lpcopen.template │ │ └── sAPI-Project.template │ ├── searchform.ui │ ├── skeleton/ │ │ ├── bin/ │ │ │ ├── ftdi_rules.sh │ │ │ └── qt.conf │ │ ├── desktop-integration.sh │ │ ├── embedded-ide.hardconf │ │ ├── embedded-ide.sh │ │ ├── embedded-ide.sh.wrapper │ │ └── ftdi-tools.sh │ ├── taglist.cpp │ ├── taglist.h │ ├── targetupdatediscover.cpp │ ├── targetupdatediscover.h │ ├── templatedownloader.cpp │ ├── templatedownloader.h │ ├── templatesdownloadselector.cpp │ ├── templatesdownloadselector.h │ ├── templatesdownloadselector.ui │ ├── toolmanager.cpp │ ├── toolmanager.h │ ├── toolmanager.ui │ ├── version.cpp │ └── version.h ├── qtshdialog/ │ ├── 3rdpart/ │ │ └── QJsonModel/ │ │ ├── LICENSE │ │ ├── QJsonModel.pri │ │ ├── QJsonModel.pro │ │ ├── README.md │ │ ├── main.cpp │ │ ├── qjsonmodel.cpp │ │ ├── qjsonmodel.h │ │ └── qjsonmodel.py │ ├── main.cpp │ └── qtshdialog.pro └── socketwaiter/ ├── .gitignore ├── LICENSE ├── README.md ├── main.cpp └── socketwaiter.pro