10 references to ExpandedCompletionMode
Microsoft.CodeAnalysis.EditorFeatures (4)
IntelliSense\AsyncCompletion\CompletionSource.cs (4)
268options with { ExpandedCompletionBehavior = ExpandedCompletionMode.NonExpandedItemsOnly }, cancellationToken).ConfigureAwait(false); 284options with { ExpandedCompletionBehavior = ExpandedCompletionMode.ExpandedItemsOnly, PerformSort = true }, 290options with { ExpandedCompletionBehavior = ExpandedCompletionMode.NonExpandedItemsOnly }, cancellationToken).ConfigureAwait(false); 356ExpandedCompletionBehavior = ExpandedCompletionMode.ExpandedItemsOnly
Microsoft.CodeAnalysis.Features (5)
Completion\CompletionOptions.cs (2)
52public ExpandedCompletionMode ExpandedCompletionBehavior { get; init; } = ExpandedCompletionMode.AllItems;
Completion\CompletionService.ProviderManager.cs (2)
182ExpandedCompletionMode.NonExpandedItemsOnly => providers.WhereAsArray(p => !p.IsExpandItemProvider), 183ExpandedCompletionMode.ExpandedItemsOnly => providers.WhereAsArray(p => p.IsExpandItemProvider),
SpellCheck\AbstractSpellCheckCodeFixProvider.cs (1)
125ExpandedCompletionBehavior = ExpandedCompletionMode.NonExpandedItemsOnly
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Handler\Completion\Extensions.cs (1)
31ExpandedCompletionBehavior = ExpandedCompletionMode.NonExpandedItemsOnly,