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