4 references to LspEditorFeatureFlag
Microsoft.CodeAnalysis.EditorFeatures (3)
LanguageServer\AlwaysActivateInProcLanguageClient.cs (1)
62var isLspEditorEnabled = GlobalOptions.GetOption(LspOptionsStorage.LspEditorFeatureFlag);
LanguageServer\LiveShareInProcLanguageClient.cs (1)
50var isLspEditorEnabled = GlobalOptions.GetOption(LspOptionsStorage.LspEditorFeatureFlag);
Shared\Utilities\IWorkspaceContextService.cs (1)
46public bool IsInLspEditorContext() => _globalOptionsService.GetOption(LspOptionsStorage.LspEditorFeatureFlag);
Microsoft.VisualStudio.LanguageServices (1)
Implementation\VisualStudioWorkspaceContextService.cs (1)
36=> IsLiveShareGuest() || IsCloudEnvironmentClient() || _globalOptions.GetOption(LspOptionsStorage.LspEditorFeatureFlag);