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