Hi,
I try to register an additonal CompletionProvider to the VBSyntaxLanguage. The constructor of a CompletionProvider allowes to add Ordering information. The documentation describes this as the way to define the processing order of all the completion providers in the SyntaxLanguage.
I was not able to set my own CompletionProvider before the default VBCompletionProvider.
This is the source code I used:
public class SessionCompletionProvider : CompletionProviderBase, IEditorDocumentTextChangeEventSink
{
public SessionCompletionProvider() : base("SessionCompletionProvider", new[] {new Ordering("Visual Basic", OrderPlacement.Before)} )
{
Thanks for any help!
Sylko