6 references to CompletionViewOptionsStorage
Microsoft.CodeAnalysis.EditorFeatures (6)
ExternalAccess\VSTypeScript\Api\VSTypeScriptGlobalOptions.cs (2)
21
get => Service.GetOption(
CompletionViewOptionsStorage
.BlockForCompletionItems, InternalLanguageNames.TypeScript);
22
set => Service.SetGlobalOption(
CompletionViewOptionsStorage
.BlockForCompletionItems, InternalLanguageNames.TypeScript, value);
IntelliSense\AsyncCompletion\CompletionSource.cs (2)
122
var blockForCompletionItem = _editorOptionsService.GlobalOptions.GetOption(
CompletionViewOptionsStorage
.BlockForCompletionItems, service.Language);
253
var showCompletionItemFilters = _editorOptionsService.GlobalOptions.GetOption(
CompletionViewOptionsStorage
.ShowCompletionItemFilters, document.Project.Language);
IntelliSense\AsyncCompletion\ItemManager.CompletionListUpdater.cs (2)
108
&& globalOptions.GetOption(
CompletionViewOptionsStorage
.HighlightMatchingPortionsOfCompletionListItems, _document.Project.Language);
110
_showCompletionItemFilters = globalOptions.GetOption(
CompletionViewOptionsStorage
.ShowCompletionItemFilters, _document.Project.Language);