├── .editorconfig ├── .github ├── dependabot.yml └── workflows │ ├── mingw-build.yml │ └── msbuild.yml ├── .gitignore ├── DlgAbout.cpp ├── DlgAbout.h ├── DlgConsole.cpp ├── DlgConsole.h ├── DlgEditLanguages.cpp ├── DlgEditLanguages.h ├── DlgEditLibrary.cpp ├── DlgEditLibrary.h ├── DlgEditSnippet.cpp ├── DlgEditSnippet.h ├── DlgImportLibrary.cpp ├── DlgImportLibrary.h ├── DlgOptions.cpp ├── DlgOptions.h ├── LICENSE.md ├── Language.cpp ├── Language.h ├── Library.cpp ├── Library.h ├── Makefile ├── NPP ├── Docking.h ├── Notepad_plus_msgs.h ├── Parameters.h ├── PluginInterface.h ├── Sci_Position.h ├── Scintilla.h ├── dockingResource.h ├── menuCmdID.h └── no_ms_shit.props ├── NppOptions.cpp ├── NppOptions.h ├── NppSnippets.cpp ├── NppSnippets.h ├── NppSnippets.sln ├── NppSnippets.vcxproj ├── NppSnippets.vcxproj.filters ├── NppSnippets_res.rc ├── Options.cpp ├── Options.h ├── README.md ├── Res ├── MainToolbar_Snippets.bmp └── Snippets.ico ├── Resource.h ├── Snippets.cpp ├── Snippets.h ├── SnippetsDB.cpp ├── SnippetsDB.h ├── SqliteDB.cpp ├── SqliteDB.h ├── WaitCursor.cpp ├── WaitCursor.h ├── docs ├── .editorconfig ├── Dockerfile ├── Makefile ├── changelog.rst ├── compile.rst ├── conf.py ├── contact.rst ├── database.rst ├── faq.rst ├── gpl-2.rst ├── images │ ├── context-menu-library.png │ ├── context-menu-snippet.png │ ├── edit-snippet.png │ └── main.png ├── index.rst ├── installation.rst ├── introduction.rst ├── known-issues.rst ├── libraries.rst ├── license.rst ├── options.rst ├── requirements.txt ├── usage.rst └── wishlist.rst ├── misc ├── Languages.sql ├── NppSnippets.sql └── Template.sqlite ├── sqlite3.c ├── sqlite3.h ├── version_git.bat └── version_git.sh /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/mingw-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/.github/workflows/mingw-build.yml -------------------------------------------------------------------------------- /.github/workflows/msbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/.github/workflows/msbuild.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/.gitignore -------------------------------------------------------------------------------- /DlgAbout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/DlgAbout.cpp -------------------------------------------------------------------------------- /DlgAbout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/DlgAbout.h -------------------------------------------------------------------------------- /DlgConsole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/DlgConsole.cpp -------------------------------------------------------------------------------- /DlgConsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/DlgConsole.h -------------------------------------------------------------------------------- /DlgEditLanguages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/DlgEditLanguages.cpp -------------------------------------------------------------------------------- /DlgEditLanguages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/DlgEditLanguages.h -------------------------------------------------------------------------------- /DlgEditLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/DlgEditLibrary.cpp -------------------------------------------------------------------------------- /DlgEditLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/DlgEditLibrary.h -------------------------------------------------------------------------------- /DlgEditSnippet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/DlgEditSnippet.cpp -------------------------------------------------------------------------------- /DlgEditSnippet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/DlgEditSnippet.h -------------------------------------------------------------------------------- /DlgImportLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/DlgImportLibrary.cpp -------------------------------------------------------------------------------- /DlgImportLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/DlgImportLibrary.h -------------------------------------------------------------------------------- /DlgOptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/DlgOptions.cpp -------------------------------------------------------------------------------- /DlgOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/DlgOptions.h -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Language.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/Language.cpp -------------------------------------------------------------------------------- /Language.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/Language.h -------------------------------------------------------------------------------- /Library.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/Library.cpp -------------------------------------------------------------------------------- /Library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/Library.h -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/Makefile -------------------------------------------------------------------------------- /NPP/Docking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/NPP/Docking.h -------------------------------------------------------------------------------- /NPP/Notepad_plus_msgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/NPP/Notepad_plus_msgs.h -------------------------------------------------------------------------------- /NPP/Parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/NPP/Parameters.h -------------------------------------------------------------------------------- /NPP/PluginInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/NPP/PluginInterface.h -------------------------------------------------------------------------------- /NPP/Sci_Position.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/NPP/Sci_Position.h -------------------------------------------------------------------------------- /NPP/Scintilla.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/NPP/Scintilla.h -------------------------------------------------------------------------------- /NPP/dockingResource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/NPP/dockingResource.h -------------------------------------------------------------------------------- /NPP/menuCmdID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/NPP/menuCmdID.h -------------------------------------------------------------------------------- /NPP/no_ms_shit.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/NPP/no_ms_shit.props -------------------------------------------------------------------------------- /NppOptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/NppOptions.cpp -------------------------------------------------------------------------------- /NppOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/NppOptions.h -------------------------------------------------------------------------------- /NppSnippets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/NppSnippets.cpp -------------------------------------------------------------------------------- /NppSnippets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/NppSnippets.h -------------------------------------------------------------------------------- /NppSnippets.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/NppSnippets.sln -------------------------------------------------------------------------------- /NppSnippets.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/NppSnippets.vcxproj -------------------------------------------------------------------------------- /NppSnippets.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/NppSnippets.vcxproj.filters -------------------------------------------------------------------------------- /NppSnippets_res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/NppSnippets_res.rc -------------------------------------------------------------------------------- /Options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/Options.cpp -------------------------------------------------------------------------------- /Options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/Options.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/README.md -------------------------------------------------------------------------------- /Res/MainToolbar_Snippets.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/Res/MainToolbar_Snippets.bmp -------------------------------------------------------------------------------- /Res/Snippets.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/Res/Snippets.ico -------------------------------------------------------------------------------- /Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/Resource.h -------------------------------------------------------------------------------- /Snippets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/Snippets.cpp -------------------------------------------------------------------------------- /Snippets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/Snippets.h -------------------------------------------------------------------------------- /SnippetsDB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/SnippetsDB.cpp -------------------------------------------------------------------------------- /SnippetsDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/SnippetsDB.h -------------------------------------------------------------------------------- /SqliteDB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/SqliteDB.cpp -------------------------------------------------------------------------------- /SqliteDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/SqliteDB.h -------------------------------------------------------------------------------- /WaitCursor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/WaitCursor.cpp -------------------------------------------------------------------------------- /WaitCursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/WaitCursor.h -------------------------------------------------------------------------------- /docs/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/docs/.editorconfig -------------------------------------------------------------------------------- /docs/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/docs/Dockerfile -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/docs/changelog.rst -------------------------------------------------------------------------------- /docs/compile.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/docs/compile.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contact.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/docs/contact.rst -------------------------------------------------------------------------------- /docs/database.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/docs/database.rst -------------------------------------------------------------------------------- /docs/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/docs/faq.rst -------------------------------------------------------------------------------- /docs/gpl-2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/docs/gpl-2.rst -------------------------------------------------------------------------------- /docs/images/context-menu-library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/docs/images/context-menu-library.png -------------------------------------------------------------------------------- /docs/images/context-menu-snippet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/docs/images/context-menu-snippet.png -------------------------------------------------------------------------------- /docs/images/edit-snippet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/docs/images/edit-snippet.png -------------------------------------------------------------------------------- /docs/images/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/docs/images/main.png -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/docs/introduction.rst -------------------------------------------------------------------------------- /docs/known-issues.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/docs/known-issues.rst -------------------------------------------------------------------------------- /docs/libraries.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/docs/libraries.rst -------------------------------------------------------------------------------- /docs/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/docs/license.rst -------------------------------------------------------------------------------- /docs/options.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/docs/options.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /docs/wishlist.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/docs/wishlist.rst -------------------------------------------------------------------------------- /misc/Languages.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/misc/Languages.sql -------------------------------------------------------------------------------- /misc/NppSnippets.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/misc/NppSnippets.sql -------------------------------------------------------------------------------- /misc/Template.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/misc/Template.sqlite -------------------------------------------------------------------------------- /sqlite3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/sqlite3.c -------------------------------------------------------------------------------- /sqlite3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/sqlite3.h -------------------------------------------------------------------------------- /version_git.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/version_git.bat -------------------------------------------------------------------------------- /version_git.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffes/nppsnippets/HEAD/version_git.sh --------------------------------------------------------------------------------