Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zvirja/nppplugintinyhelpers
This is a simple plugin for Notepad++ which contains a couple of tiny NPP commands. For instance one command just run built in Block Uncomment command. By default N++ doesn't allow to specify the shortcut for this command, so I designed this plugin as a little proxy. Another command run Reload and then scrolls to the document end.
https://github.com/zvirja/nppplugintinyhelpers
Last synced: 23 days ago
JSON representation
This is a simple plugin for Notepad++ which contains a couple of tiny NPP commands. For instance one command just run built in Block Uncomment command. By default N++ doesn't allow to specify the shortcut for this command, so I designed this plugin as a little proxy. Another command run Reload and then scrolls to the document end.
- Host: GitHub
- URL: https://github.com/zvirja/nppplugintinyhelpers
- Owner: zvirja
- Created: 2014-02-09T17:29:40.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-03-17T15:18:01.000Z (almost 10 years ago)
- Last Synced: 2024-11-09T02:24:59.208Z (3 months ago)
- Language: C++
- Homepage:
- Size: 461 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: readme.FIRST
Awesome Lists containing this project
README
Even your grandmom can do it!
This template is done for making plugin development as easy and simple as possible.
A simple plugin can be done through 4 steps, by editing only 2 files (PluginDefinition.h and PluginDefinition.cpp) :
1. Define your plugin name in "PluginDefinition.h"
2. Define your plugin commands number in "PluginDefinition.h"
3. Customize plugin commands names and associated function name (and the other stuff, optional) in "PluginDefinition.cpp".
4. Define the associated functionsJust follow the 4 steps (commented) in both PluginDefinition.h and PluginDefinition.cpp files :
//-------------------------------------//
//-- STEP 1. DEFINE YOUR PLUGIN NAME --//
//-------------------------------------////-----------------------------------------------//
//-- STEP 2. DEFINE YOUR PLUGIN COMMAND NUMBER --//
//-----------------------------------------------////--------------------------------------------//
//-- STEP 3. CUSTOMIZE YOUR PLUGIN COMMANDS --//
//--------------------------------------------////----------------------------------------------//
//-- STEP 4. DEFINE YOUR ASSOCIATED FUNCTIONS --//
//----------------------------------------------//Any questions and suggestions please post here :
https://sourceforge.net/forum/forum.php?forum_id=482781For more information about plugin development, please check here:
http://sourceforge.net/apps/mediawiki/notepad-plus/index.php?title=Plugin_DevelopmentDon HO
[email protected]