12 references to AfterFullyTypedWord
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (9)
Completion\CompletionProviders\AttributeNamedParameterCompletionProviderTests.cs (1)
44
await VerifySendEnterThroughToEnterAsync(markup, "Color =", sendThroughEnterOption: EnterKeyRule.
AfterFullyTypedWord
, expected: true);
Completion\CompletionProviders\KeywordCompletionProviderTests.cs (1)
34
await VerifySendEnterThroughToEnterAsync("$$", "class", sendThroughEnterOption: EnterKeyRule.
AfterFullyTypedWord
, expected: true);
Completion\CompletionProviders\NamedParameterCompletionProviderTests.cs (1)
39
await VerifySendEnterThroughToEnterAsync(markup, "a:", sendThroughEnterOption: EnterKeyRule.
AfterFullyTypedWord
, expected: true);
Completion\CompletionProviders\ObjectCreationCompletionProviderTests.cs (1)
144
await VerifySendEnterThroughToEnterAsync(markup, "D", sendThroughEnterOption: EnterKeyRule.
AfterFullyTypedWord
, expected: true);
Completion\CompletionProviders\ReferenceDirectiveCompletionProviderTests.cs (1)
67
[InlineData(EnterKeyRule.
AfterFullyTypedWord
)]
Completion\CompletionProviders\SnippetCompletionProviderTests.cs (2)
114
await VerifySendEnterThroughToEnterAsync("$$", "SnippetShortcu", sendThroughEnterOption: EnterKeyRule.
AfterFullyTypedWord
, expected: false);
115
await VerifySendEnterThroughToEnterAsync("$$", "SnippetShortcut", sendThroughEnterOption: EnterKeyRule.
AfterFullyTypedWord
, expected: true);
Completion\CompletionProviders\SpeculativeTCompletionProviderTests.cs (1)
46
await VerifySendEnterThroughToEnterAsync(markup, "T", sendThroughEnterOption: EnterKeyRule.
AfterFullyTypedWord
, expected: true);
Completion\CompletionProviders\SymbolCompletionProviderTests_NoInteractive.cs (1)
64
await VerifySendEnterThroughToEnterAsync("class C { void M() { System.Console.$$", "Beep", sendThroughEnterOption: EnterKeyRule.
AfterFullyTypedWord
, expected: true);
Microsoft.CodeAnalysis.EditorFeatures (1)
IntelliSense\AsyncCompletion\CommitManager.cs (1)
400
case EnterKeyRule.
AfterFullyTypedWord
:
Roslyn.VisualStudio.Next.UnitTests (2)
UnifiedSettings\UnifiedSettingsTests.cs (2)
99
enumValues: [EnterKeyRule.Never, EnterKeyRule.
AfterFullyTypedWord
, EnterKeyRule.Always],
211
enumValues: [EnterKeyRule.Never, EnterKeyRule.
AfterFullyTypedWord
, EnterKeyRule.Always],