2 implementations of IsInLspEditorContext
Microsoft.CodeAnalysis.EditorFeatures (1)
Shared\Utilities\IWorkspaceContextService.cs (1)
46public bool IsInLspEditorContext() => _globalOptionsService.GetOption(LspOptionsStorage.LspEditorFeatureFlag);
Microsoft.VisualStudio.LanguageServices (1)
Implementation\VisualStudioWorkspaceContextService.cs (1)
35public bool IsInLspEditorContext()
3 references to IsInLspEditorContext
Microsoft.CodeAnalysis.EditorFeatures (2)
Classification\Semantic\AbstractSemanticOrEmbeddedClassificationViewTaggerProvider.cs (1)
115if (workspaceContextService?.IsInLspEditorContext() == true)
Shared\Extensions\ITextBufferExtensions.cs (1)
21return workspaceContextService.IsInLspEditorContext();
Microsoft.VisualStudio.LanguageServices (1)
NavigateTo\VisualStudioNavigateToItemProviderFactory.cs (1)
43if (_workspace.Services.GetRequiredService<IWorkspaceContextService>().IsInLspEditorContext())