├── .gitignore ├── NotepadStarter.sln ├── PluginManager.xml ├── appveyor.yml ├── license.txt ├── plugin ├── NotepadStarterPlugin.cpp ├── NotepadStarterPlugin.rc ├── NotepadStarterPlugin.vcxproj ├── Notepad_plus_msgs.h ├── PluginInterface.h ├── Scintilla.h ├── menuCmdID.h └── resource.h ├── readme.md ├── starter ├── NotepadStarter.cpp ├── NotepadStarter.ico ├── NotepadStarter.rc ├── NotepadStarter.vcxproj ├── NotepadStarterInstall.bat ├── NotepadStarterRelease.bat ├── NotepadStarterReplacer.bat ├── NotepadStarterUninstall.bat ├── SystemTraySDK.cpp ├── SystemTraySDK.h ├── getadmin-test.bat ├── getadmin.vbs ├── request-admin-hidden-subwindow.bat ├── request-admin-show-subwindow.bat ├── request-admin.bat └── resource.h └── utils ├── NotepadDebug.h ├── NotepadUtils.cpp ├── NotepadUtils.h ├── USM.h ├── VersionInfo.inc └── ns_defines.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygstate/NotepadStarter/HEAD/.gitignore -------------------------------------------------------------------------------- /NotepadStarter.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygstate/NotepadStarter/HEAD/NotepadStarter.sln -------------------------------------------------------------------------------- /PluginManager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygstate/NotepadStarter/HEAD/PluginManager.xml -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygstate/NotepadStarter/HEAD/appveyor.yml -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygstate/NotepadStarter/HEAD/license.txt -------------------------------------------------------------------------------- /plugin/NotepadStarterPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygstate/NotepadStarter/HEAD/plugin/NotepadStarterPlugin.cpp -------------------------------------------------------------------------------- /plugin/NotepadStarterPlugin.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygstate/NotepadStarter/HEAD/plugin/NotepadStarterPlugin.rc -------------------------------------------------------------------------------- /plugin/NotepadStarterPlugin.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygstate/NotepadStarter/HEAD/plugin/NotepadStarterPlugin.vcxproj -------------------------------------------------------------------------------- /plugin/Notepad_plus_msgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygstate/NotepadStarter/HEAD/plugin/Notepad_plus_msgs.h -------------------------------------------------------------------------------- /plugin/PluginInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygstate/NotepadStarter/HEAD/plugin/PluginInterface.h -------------------------------------------------------------------------------- /plugin/Scintilla.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygstate/NotepadStarter/HEAD/plugin/Scintilla.h -------------------------------------------------------------------------------- /plugin/menuCmdID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygstate/NotepadStarter/HEAD/plugin/menuCmdID.h -------------------------------------------------------------------------------- /plugin/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygstate/NotepadStarter/HEAD/plugin/resource.h -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygstate/NotepadStarter/HEAD/readme.md -------------------------------------------------------------------------------- /starter/NotepadStarter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygstate/NotepadStarter/HEAD/starter/NotepadStarter.cpp -------------------------------------------------------------------------------- /starter/NotepadStarter.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygstate/NotepadStarter/HEAD/starter/NotepadStarter.ico -------------------------------------------------------------------------------- /starter/NotepadStarter.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygstate/NotepadStarter/HEAD/starter/NotepadStarter.rc -------------------------------------------------------------------------------- /starter/NotepadStarter.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygstate/NotepadStarter/HEAD/starter/NotepadStarter.vcxproj -------------------------------------------------------------------------------- /starter/NotepadStarterInstall.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygstate/NotepadStarter/HEAD/starter/NotepadStarterInstall.bat -------------------------------------------------------------------------------- /starter/NotepadStarterRelease.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygstate/NotepadStarter/HEAD/starter/NotepadStarterRelease.bat -------------------------------------------------------------------------------- /starter/NotepadStarterReplacer.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygstate/NotepadStarter/HEAD/starter/NotepadStarterReplacer.bat -------------------------------------------------------------------------------- /starter/NotepadStarterUninstall.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygstate/NotepadStarter/HEAD/starter/NotepadStarterUninstall.bat -------------------------------------------------------------------------------- /starter/SystemTraySDK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygstate/NotepadStarter/HEAD/starter/SystemTraySDK.cpp -------------------------------------------------------------------------------- /starter/SystemTraySDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygstate/NotepadStarter/HEAD/starter/SystemTraySDK.h -------------------------------------------------------------------------------- /starter/getadmin-test.bat: -------------------------------------------------------------------------------- 1 | set PARAMS=abc Def "g GH 2 | call %~dp0getadmin.vbs 3 | pause -------------------------------------------------------------------------------- /starter/getadmin.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygstate/NotepadStarter/HEAD/starter/getadmin.vbs -------------------------------------------------------------------------------- /starter/request-admin-hidden-subwindow.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygstate/NotepadStarter/HEAD/starter/request-admin-hidden-subwindow.bat -------------------------------------------------------------------------------- /starter/request-admin-show-subwindow.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygstate/NotepadStarter/HEAD/starter/request-admin-show-subwindow.bat -------------------------------------------------------------------------------- /starter/request-admin.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygstate/NotepadStarter/HEAD/starter/request-admin.bat -------------------------------------------------------------------------------- /starter/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygstate/NotepadStarter/HEAD/starter/resource.h -------------------------------------------------------------------------------- /utils/NotepadDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygstate/NotepadStarter/HEAD/utils/NotepadDebug.h -------------------------------------------------------------------------------- /utils/NotepadUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygstate/NotepadStarter/HEAD/utils/NotepadUtils.cpp -------------------------------------------------------------------------------- /utils/NotepadUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygstate/NotepadStarter/HEAD/utils/NotepadUtils.h -------------------------------------------------------------------------------- /utils/USM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygstate/NotepadStarter/HEAD/utils/USM.h -------------------------------------------------------------------------------- /utils/VersionInfo.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygstate/NotepadStarter/HEAD/utils/VersionInfo.inc -------------------------------------------------------------------------------- /utils/ns_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygstate/NotepadStarter/HEAD/utils/ns_defines.h --------------------------------------------------------------------------------