Hi all!
I have created my own CompletionProvider and CompletionSession for a special dollar notation.This CompletionSession is not just a simple list of items, with the right arrow key you can open a sub completion list and the first list will be closed. This works fine, except the selection by typing in the second/sub-completion list.
Is there any trick to reset the selection functionality for CompletionSessions?
This is how I open the second DollarCompletionSession in the OnViewKeyDown of the DollarCompletionSession
var sNew = new DollarCompletionSession(_view, _session, part);
sNew.Open(_view);
Thanks for any suggestions
Sylko