Hi again,
would it be possible to disable autocompletion automatically when the parameter is a delegate? The problem I am facing is when writting somethink like:
myList.Sort(e =>
As soon as I type the "=" from "=>" SharpDevelop autocompletes the "e" which whatever member beginning with "e", which is a bit annoying.
One possible solution would be to explicitely require the user to press ctrl+space when the parameter is a delegate. Visual Studio solves this by inserting a blank entry in the autocomplete drop down, so the user has to explicitely move the cursor to select another entry.
Thanks for your great work!