4 references to LspEditorFeatureFlag
Microsoft.CodeAnalysis.EditorFeatures (3)
LanguageServer\AlwaysActivateInProcCapabilitiesProvider.cs (1)
29var isLspEditorEnabled = globalOptions.GetOption(LspOptionsStorage.LspEditorFeatureFlag);
LanguageServer\LiveShareCapabilitiesProvider.cs (1)
20var isLspEditorEnabled = globalOptionService.GetOption(LspOptionsStorage.LspEditorFeatureFlag);
Shared\Utilities\IWorkspaceContextService.cs (1)
41public bool IsInLspEditorContext() => _globalOptionsService.GetOption(LspOptionsStorage.LspEditorFeatureFlag);
Microsoft.VisualStudio.LanguageServices (1)
Implementation\VisualStudioWorkspaceContextService.cs (1)
35=> IsLiveShareGuest() || IsCloudEnvironmentClient() || _globalOptions.GetOption(LspOptionsStorage.LspEditorFeatureFlag);