Hi
I've implemented ParameterInfoSession & CompletionSession and they both work as expected, however when they are both displayed at the same time they apear over each other. I've done some digging but don't seem to be able to correct this.
I can get hold of the open sessions via
var exisitngParamSession = view.SyntaxEditor.IntelliPrompt.Sessions[IntelliPromptSessionTypes.ParameterInfo];
I can even call Reposition on them (which seemed promising), but did nothing.
They all have a Bounds property which again looked promising and would allow me to manually nudge them about but this is readonly only and Rect is imutable.
Ideally I'd like to mirror visual studios behaviour and have the param info with the intellisense under it,
Any suggestions.
Thanks
Simon