1 implementation of IsInLspEditorContext
Microsoft.CodeAnalysis.EditorFeatures (1)
Shared\Utilities\IWorkspaceContextService.cs (1)
41public bool IsInLspEditorContext() => _globalOptionsService.GetOption(LspOptionsStorage.LspEditorFeatureFlag);
3 references to IsInLspEditorContext
Microsoft.CodeAnalysis.EditorFeatures (3)
Classification\Semantic\AbstractSemanticOrEmbeddedClassificationViewTaggerProvider.cs (1)
100if (workspaceContextService?.IsInLspEditorContext() == true)
InlineHints\InlineHintsDataTaggerProvider.cs (1)
79if (workspaceContextService.IsInLspEditorContext())
Shared\Extensions\ITextBufferExtensions.cs (1)
21return workspaceContextService.IsInLspEditorContext();