4 references to LspEditorFeatureFlag
Microsoft.CodeAnalysis.EditorFeatures (3)
LanguageServer\AlwaysActivateInProcLanguageClient.cs (1)
54var isLspEditorEnabled = GlobalOptions.GetOption(LspOptionsStorage.LspEditorFeatureFlag);
LanguageServer\LiveShareInProcLanguageClient.cs (1)
41var isLspEditorEnabled = GlobalOptions.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);