
Hello!
I am using a subclass of CSharpCompletionProvider to modify the completion list of the syntax editor.
I override OnSessionOpening and add my own CompletionItems. Every time the user writes an expression and presses "." OnSessionOpening is called. But in some cases the completion list is completely empty and the method is not called. Is it possible to add an item to the completion list in this case?
The only override called in this case is RequestSession! But even returning "true" does not do the job.
Thanks for your help :)