jacobslusser / ScintillaNET

A Windows Forms control, wrapper, and bindings for the Scintilla text editor.
MIT License
963 stars 243 forks source link

All other open pull requests and added CallTipClick event with click type enumeration. #486

Closed VPKSoft closed 1 year ago

VPKSoft commented 4 years ago
private void sctTest_CallTipClick(object sender, CallTipClickEventArgs e)
{
    if (e.CallTipClickType == CallTipClickType.UpArrow)
    {
        // do something with it..
    }
}

Hopefully this great project is "still in active development"! 👍🙄

VPKSoft commented 4 years ago

I released an unofficial NuGet package of this branch: https://www.nuget.org/packages/unofficial.ScintillaNET/3.6.5 because nothing seems to happen here...

svdHero commented 3 years ago

Any chance to get this PR through? The .NET 5.0 support would be so helpful.

ericoporto commented 3 years ago

This PR has the most updated code of Scintilla NET, it would be great to merge or at least cherrypick it's commits to update the source code of this library.