NotepadPlusPlusPluginPack.Net icon indicating copy to clipboard operation
NotepadPlusPlusPluginPack.Net copied to clipboard

.Net package to install into visual studio to make plugins for Notepad++

Results 33 NotepadPlusPlusPluginPack.Net issues
Sort by recently updated
recently updated
newest added
trafficstars

We need to develop a plugin that will carry out integrationtest of the functionality provided by the framework. We should start out with something simple and gradually make it nicer.

enhancement
help wanted

Steps: 1. Add a a PropertyGrid control in demo project frmGoToLine 2. Add a new class inside of frmGoToLine ` class Test { public string Name { get; set; }...

help wanted

We are using an old version, a newer version is found at https://www.nuget.org/packages/UnmanagedExports not sure if the format of the `RGiesecke.DllExport.targets` has changed compared to the version we are using

enhancement
help wanted

[`SetCommand()`](https://github.com/kbilsted/NotepadPlusPlusPluginPack.Net/blob/107c011eb9d446d541510f47f1f06e517cdf7bca/Visual%20Studio%20Project%20Template%20C%23/PluginInfrastructure/NppPluginNETBase.cs#L26) currently takes an index as its first parameter. It uses this to set the `_cmdID` field. However, this is a field N++ [sets internally](https://github.com/notepad-plus-plus/notepad-plus-plus/blob/master/PowerEditor/src/MISC/PluginsManager/PluginsManager.cpp#L391). All of my C++ plugins...

enhancement
help wanted

As noted in issue #93, some dependency in the project causes compiler errors if the compiler sees `double.Infinity`, `double.NegativeInfinity`, `double.NaN`, or anything else like `1d / 0d` that can be...

According to https://ww…w.scintilla.org/ScintillaDoc.html and https://en.cppreference.com/w/c/types/ptrdiff_t

When using the GetText(int length) method I only get a maximum of exactly 10'000 characters back, independent of the length value.

Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. Release notes Sourced from actions/checkout's releases. v4.0.0 What's Changed Update default runtime to node20 by @​takost in actions/checkout#1436 Support fetching without the --progress option...

dependencies

Based on https://github.com/kbilsted/NotepadPlusPlusPluginPack.Net/pull/104. [rdipardo](https://github.com/rdipardo) did all the hard work here, this is just a refinement. That said, I would strongly urge using this PR instead. This makes it easy for...

Previously the GetFilePath method of NotepadPPGateway was unusable in 64-bit Notepad++ because it accepted an int parameter, but the buffer id (the IdFrom parameter of the NPPN_FILEBEFORECLOSE notification) could be...