2 implementations of IsInLspEditorContext
Microsoft.CodeAnalysis.EditorFeatures (1)
Shared\Utilities\IWorkspaceContextService.cs (1)
41public bool IsInLspEditorContext() => _globalOptionsService.GetOption(LspOptionsStorage.LspEditorFeatureFlag);
Microsoft.VisualStudio.LanguageServices (1)
Implementation\VisualStudioWorkspaceContextService.cs (1)
34public bool IsInLspEditorContext()
4 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();
Microsoft.VisualStudio.LanguageServices (1)
NavigateTo\VisualStudioNavigateToItemProviderFactory.cs (1)
43if (_workspace.Services.GetRequiredService<IWorkspaceContextService>().IsInLspEditorContext())