├── Makefile ├── README ├── doc ├── SessionMgr.css └── SessionMgr.html ├── license.txt ├── setenv.cmd ├── src ├── ContextMenu.cpp ├── ContextMenu.h ├── DlgDelete.cpp ├── DlgDelete.h ├── DlgNew.cpp ├── DlgNew.h ├── DlgRename.cpp ├── DlgRename.h ├── DlgSessions.cpp ├── DlgSessions.h ├── DlgSettings.cpp ├── DlgSettings.h ├── DllMain.cpp ├── Menu.cpp ├── Menu.h ├── Properties.cpp ├── Properties.h ├── SessionMgr.cpp ├── SessionMgr.h ├── SessionMgrApi.h ├── Settings.cpp ├── Settings.h ├── System.cpp ├── System.h ├── Util.cpp ├── Util.h ├── npp │ ├── Notepad_plus_msgs.h │ ├── PluginInterface.h │ ├── Scintilla.h │ └── menuCmdID.h ├── res │ ├── resource.h │ ├── resource.rc │ ├── version.h │ └── version.rc2 ├── utf8 │ ├── checked.h │ ├── core.h │ └── unchecked.h └── xml │ ├── tinyxml.h │ ├── tinyxml2.cpp │ └── tinyxml2.h └── x.cmd /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-foster/npp-session-manager/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-foster/npp-session-manager/HEAD/README -------------------------------------------------------------------------------- /doc/SessionMgr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-foster/npp-session-manager/HEAD/doc/SessionMgr.css -------------------------------------------------------------------------------- /doc/SessionMgr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-foster/npp-session-manager/HEAD/doc/SessionMgr.html -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-foster/npp-session-manager/HEAD/license.txt -------------------------------------------------------------------------------- /setenv.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-foster/npp-session-manager/HEAD/setenv.cmd -------------------------------------------------------------------------------- /src/ContextMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-foster/npp-session-manager/HEAD/src/ContextMenu.cpp -------------------------------------------------------------------------------- /src/ContextMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-foster/npp-session-manager/HEAD/src/ContextMenu.h -------------------------------------------------------------------------------- /src/DlgDelete.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-foster/npp-session-manager/HEAD/src/DlgDelete.cpp -------------------------------------------------------------------------------- /src/DlgDelete.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-foster/npp-session-manager/HEAD/src/DlgDelete.h -------------------------------------------------------------------------------- /src/DlgNew.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-foster/npp-session-manager/HEAD/src/DlgNew.cpp -------------------------------------------------------------------------------- /src/DlgNew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-foster/npp-session-manager/HEAD/src/DlgNew.h -------------------------------------------------------------------------------- /src/DlgRename.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-foster/npp-session-manager/HEAD/src/DlgRename.cpp -------------------------------------------------------------------------------- /src/DlgRename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-foster/npp-session-manager/HEAD/src/DlgRename.h -------------------------------------------------------------------------------- /src/DlgSessions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-foster/npp-session-manager/HEAD/src/DlgSessions.cpp -------------------------------------------------------------------------------- /src/DlgSessions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-foster/npp-session-manager/HEAD/src/DlgSessions.h -------------------------------------------------------------------------------- /src/DlgSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-foster/npp-session-manager/HEAD/src/DlgSettings.cpp -------------------------------------------------------------------------------- /src/DlgSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-foster/npp-session-manager/HEAD/src/DlgSettings.h -------------------------------------------------------------------------------- /src/DllMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-foster/npp-session-manager/HEAD/src/DllMain.cpp -------------------------------------------------------------------------------- /src/Menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-foster/npp-session-manager/HEAD/src/Menu.cpp -------------------------------------------------------------------------------- /src/Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-foster/npp-session-manager/HEAD/src/Menu.h -------------------------------------------------------------------------------- /src/Properties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-foster/npp-session-manager/HEAD/src/Properties.cpp -------------------------------------------------------------------------------- /src/Properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-foster/npp-session-manager/HEAD/src/Properties.h -------------------------------------------------------------------------------- /src/SessionMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-foster/npp-session-manager/HEAD/src/SessionMgr.cpp -------------------------------------------------------------------------------- /src/SessionMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-foster/npp-session-manager/HEAD/src/SessionMgr.h -------------------------------------------------------------------------------- /src/SessionMgrApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-foster/npp-session-manager/HEAD/src/SessionMgrApi.h -------------------------------------------------------------------------------- /src/Settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-foster/npp-session-manager/HEAD/src/Settings.cpp -------------------------------------------------------------------------------- /src/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-foster/npp-session-manager/HEAD/src/Settings.h -------------------------------------------------------------------------------- /src/System.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-foster/npp-session-manager/HEAD/src/System.cpp -------------------------------------------------------------------------------- /src/System.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-foster/npp-session-manager/HEAD/src/System.h -------------------------------------------------------------------------------- /src/Util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-foster/npp-session-manager/HEAD/src/Util.cpp -------------------------------------------------------------------------------- /src/Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-foster/npp-session-manager/HEAD/src/Util.h -------------------------------------------------------------------------------- /src/npp/Notepad_plus_msgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-foster/npp-session-manager/HEAD/src/npp/Notepad_plus_msgs.h -------------------------------------------------------------------------------- /src/npp/PluginInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-foster/npp-session-manager/HEAD/src/npp/PluginInterface.h -------------------------------------------------------------------------------- /src/npp/Scintilla.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-foster/npp-session-manager/HEAD/src/npp/Scintilla.h -------------------------------------------------------------------------------- /src/npp/menuCmdID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-foster/npp-session-manager/HEAD/src/npp/menuCmdID.h -------------------------------------------------------------------------------- /src/res/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-foster/npp-session-manager/HEAD/src/res/resource.h -------------------------------------------------------------------------------- /src/res/resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-foster/npp-session-manager/HEAD/src/res/resource.rc -------------------------------------------------------------------------------- /src/res/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-foster/npp-session-manager/HEAD/src/res/version.h -------------------------------------------------------------------------------- /src/res/version.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-foster/npp-session-manager/HEAD/src/res/version.rc2 -------------------------------------------------------------------------------- /src/utf8/checked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-foster/npp-session-manager/HEAD/src/utf8/checked.h -------------------------------------------------------------------------------- /src/utf8/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-foster/npp-session-manager/HEAD/src/utf8/core.h -------------------------------------------------------------------------------- /src/utf8/unchecked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-foster/npp-session-manager/HEAD/src/utf8/unchecked.h -------------------------------------------------------------------------------- /src/xml/tinyxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-foster/npp-session-manager/HEAD/src/xml/tinyxml.h -------------------------------------------------------------------------------- /src/xml/tinyxml2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-foster/npp-session-manager/HEAD/src/xml/tinyxml2.cpp -------------------------------------------------------------------------------- /src/xml/tinyxml2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-foster/npp-session-manager/HEAD/src/xml/tinyxml2.h -------------------------------------------------------------------------------- /x.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-foster/npp-session-manager/HEAD/x.cmd --------------------------------------------------------------------------------