├── .github ├── dependabot.yml └── workflows │ └── CI_build.yml ├── .gitignore ├── license.txt ├── readme.txt ├── source ├── DockingFeature │ ├── Docking.h │ ├── DockingDlgInterface.h │ ├── StaticDialog.cpp │ ├── StaticDialog.h │ ├── Window.h │ └── dockingResource.h ├── Notepad_plus_msgs.h ├── NppPluginDemo.cpp ├── PluginDefinition.cpp ├── PluginDefinition.h ├── PluginInterface.h ├── Sci_Position.h ├── Scintilla.h ├── conversionPanel.cpp ├── conversionPanel.h ├── conversionPanel.rc ├── menuCmdID.h └── resource.h └── vs.proj └── NppPluginConverter.vcxproj /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npp-plugins/converter/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/CI_build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npp-plugins/converter/HEAD/.github/workflows/CI_build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npp-plugins/converter/HEAD/.gitignore -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npp-plugins/converter/HEAD/license.txt -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npp-plugins/converter/HEAD/readme.txt -------------------------------------------------------------------------------- /source/DockingFeature/Docking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npp-plugins/converter/HEAD/source/DockingFeature/Docking.h -------------------------------------------------------------------------------- /source/DockingFeature/DockingDlgInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npp-plugins/converter/HEAD/source/DockingFeature/DockingDlgInterface.h -------------------------------------------------------------------------------- /source/DockingFeature/StaticDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npp-plugins/converter/HEAD/source/DockingFeature/StaticDialog.cpp -------------------------------------------------------------------------------- /source/DockingFeature/StaticDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npp-plugins/converter/HEAD/source/DockingFeature/StaticDialog.h -------------------------------------------------------------------------------- /source/DockingFeature/Window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npp-plugins/converter/HEAD/source/DockingFeature/Window.h -------------------------------------------------------------------------------- /source/DockingFeature/dockingResource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npp-plugins/converter/HEAD/source/DockingFeature/dockingResource.h -------------------------------------------------------------------------------- /source/Notepad_plus_msgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npp-plugins/converter/HEAD/source/Notepad_plus_msgs.h -------------------------------------------------------------------------------- /source/NppPluginDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npp-plugins/converter/HEAD/source/NppPluginDemo.cpp -------------------------------------------------------------------------------- /source/PluginDefinition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npp-plugins/converter/HEAD/source/PluginDefinition.cpp -------------------------------------------------------------------------------- /source/PluginDefinition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npp-plugins/converter/HEAD/source/PluginDefinition.h -------------------------------------------------------------------------------- /source/PluginInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npp-plugins/converter/HEAD/source/PluginInterface.h -------------------------------------------------------------------------------- /source/Sci_Position.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npp-plugins/converter/HEAD/source/Sci_Position.h -------------------------------------------------------------------------------- /source/Scintilla.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npp-plugins/converter/HEAD/source/Scintilla.h -------------------------------------------------------------------------------- /source/conversionPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npp-plugins/converter/HEAD/source/conversionPanel.cpp -------------------------------------------------------------------------------- /source/conversionPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npp-plugins/converter/HEAD/source/conversionPanel.h -------------------------------------------------------------------------------- /source/conversionPanel.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npp-plugins/converter/HEAD/source/conversionPanel.rc -------------------------------------------------------------------------------- /source/menuCmdID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npp-plugins/converter/HEAD/source/menuCmdID.h -------------------------------------------------------------------------------- /source/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npp-plugins/converter/HEAD/source/resource.h -------------------------------------------------------------------------------- /vs.proj/NppPluginConverter.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npp-plugins/converter/HEAD/vs.proj/NppPluginConverter.vcxproj --------------------------------------------------------------------------------