private ITagger <IClassificationTag> CreateTagger(ITextView textView, ITextBuffer buffer)
 {
     return(new ModeAwareTagger(
                () => this._textMateProvider.Value.CreateTagger <IClassificationTag>(textView, buffer),
                () => this._serverProvider.Value.CreateTagger <IClassificationTag>(textView, buffer),
                SyntacticClassificationModeSelector.GetModeSelector(_lspClientServiceFactory, buffer)));
 }