├── .github ├── .exampleWorkflows │ ├── CI_update_remote_both.yml │ ├── CI_update_remote_ondemand.yml │ ├── CI_update_remote_schedule.yml │ └── README.md ├── dependabot.yml └── workflows │ ├── CI_build.yml │ └── CI_update_remote.yml ├── .gitignore ├── license.txt ├── readme.FIRST ├── src ├── DockingFeature │ ├── Docking.h │ ├── DockingDlgInterface.h │ ├── GoToLineDlg.cpp │ ├── GoToLineDlg.h │ ├── StaticDialog.cpp │ ├── StaticDialog.h │ ├── Window.h │ ├── dockingResource.h │ ├── goLine.rc │ └── resource.h ├── Notepad_plus_msgs.h ├── NppPluginDemo.cpp ├── NppPluginDemo.rc ├── PluginDefinition.cpp ├── PluginDefinition.h ├── PluginInterface.h ├── Sci_Position.h ├── Scintilla.h └── menuCmdID.h └── vs.proj └── NppPluginTemplate.vcxproj /.github/.exampleWorkflows/CI_update_remote_both.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npp-plugins/plugintemplate/HEAD/.github/.exampleWorkflows/CI_update_remote_both.yml -------------------------------------------------------------------------------- /.github/.exampleWorkflows/CI_update_remote_ondemand.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npp-plugins/plugintemplate/HEAD/.github/.exampleWorkflows/CI_update_remote_ondemand.yml -------------------------------------------------------------------------------- /.github/.exampleWorkflows/CI_update_remote_schedule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npp-plugins/plugintemplate/HEAD/.github/.exampleWorkflows/CI_update_remote_schedule.yml -------------------------------------------------------------------------------- /.github/.exampleWorkflows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npp-plugins/plugintemplate/HEAD/.github/.exampleWorkflows/README.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npp-plugins/plugintemplate/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/CI_build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npp-plugins/plugintemplate/HEAD/.github/workflows/CI_build.yml -------------------------------------------------------------------------------- /.github/workflows/CI_update_remote.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npp-plugins/plugintemplate/HEAD/.github/workflows/CI_update_remote.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npp-plugins/plugintemplate/HEAD/.gitignore -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npp-plugins/plugintemplate/HEAD/license.txt -------------------------------------------------------------------------------- /readme.FIRST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npp-plugins/plugintemplate/HEAD/readme.FIRST -------------------------------------------------------------------------------- /src/DockingFeature/Docking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npp-plugins/plugintemplate/HEAD/src/DockingFeature/Docking.h -------------------------------------------------------------------------------- /src/DockingFeature/DockingDlgInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npp-plugins/plugintemplate/HEAD/src/DockingFeature/DockingDlgInterface.h -------------------------------------------------------------------------------- /src/DockingFeature/GoToLineDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npp-plugins/plugintemplate/HEAD/src/DockingFeature/GoToLineDlg.cpp -------------------------------------------------------------------------------- /src/DockingFeature/GoToLineDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npp-plugins/plugintemplate/HEAD/src/DockingFeature/GoToLineDlg.h -------------------------------------------------------------------------------- /src/DockingFeature/StaticDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npp-plugins/plugintemplate/HEAD/src/DockingFeature/StaticDialog.cpp -------------------------------------------------------------------------------- /src/DockingFeature/StaticDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npp-plugins/plugintemplate/HEAD/src/DockingFeature/StaticDialog.h -------------------------------------------------------------------------------- /src/DockingFeature/Window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npp-plugins/plugintemplate/HEAD/src/DockingFeature/Window.h -------------------------------------------------------------------------------- /src/DockingFeature/dockingResource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npp-plugins/plugintemplate/HEAD/src/DockingFeature/dockingResource.h -------------------------------------------------------------------------------- /src/DockingFeature/goLine.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npp-plugins/plugintemplate/HEAD/src/DockingFeature/goLine.rc -------------------------------------------------------------------------------- /src/DockingFeature/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npp-plugins/plugintemplate/HEAD/src/DockingFeature/resource.h -------------------------------------------------------------------------------- /src/Notepad_plus_msgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npp-plugins/plugintemplate/HEAD/src/Notepad_plus_msgs.h -------------------------------------------------------------------------------- /src/NppPluginDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npp-plugins/plugintemplate/HEAD/src/NppPluginDemo.cpp -------------------------------------------------------------------------------- /src/NppPluginDemo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npp-plugins/plugintemplate/HEAD/src/NppPluginDemo.rc -------------------------------------------------------------------------------- /src/PluginDefinition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npp-plugins/plugintemplate/HEAD/src/PluginDefinition.cpp -------------------------------------------------------------------------------- /src/PluginDefinition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npp-plugins/plugintemplate/HEAD/src/PluginDefinition.h -------------------------------------------------------------------------------- /src/PluginInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npp-plugins/plugintemplate/HEAD/src/PluginInterface.h -------------------------------------------------------------------------------- /src/Sci_Position.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npp-plugins/plugintemplate/HEAD/src/Sci_Position.h -------------------------------------------------------------------------------- /src/Scintilla.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npp-plugins/plugintemplate/HEAD/src/Scintilla.h -------------------------------------------------------------------------------- /src/menuCmdID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npp-plugins/plugintemplate/HEAD/src/menuCmdID.h -------------------------------------------------------------------------------- /vs.proj/NppPluginTemplate.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npp-plugins/plugintemplate/HEAD/vs.proj/NppPluginTemplate.vcxproj --------------------------------------------------------------------------------