Are there any plans to add automatic filtering to the intelliprompt list to match what the user has already typed?
Visual Studio filters the list to match any item that Contains() the typed string.
Some other editors filter to match any item that StartsWith() the string.
Ideally adding a 3 way 'FilterList' option - Off, StartsWith, Contains - whould be great.
Failing that then just a plain On/Off option where 'On' performed one of the above filters would be good too.
A second feature that would be very useful is if you could pass a parameter to tell us what is causing the list to close in the OnSyntaxEditorIntelliPromptMemberListClosing() method.
I need to be able to differentiate between a double-click on a list item and pressing the Enter key. The code must be aware of why it is closing, but there is no way to ask the editor for this information.