From cd950e1a2fedce983abe0587d8663726839b212d Mon Sep 17 00:00:00 2001 From: Ankita Khera <40616383+akhera99@users.noreply.github.com> Date: Wed, 19 Oct 2022 11:34:55 -0700 Subject: [PATCH] revert change --- src/Features/Core/Portable/Completion/CompletionOptions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Features/Core/Portable/Completion/CompletionOptions.cs b/src/Features/Core/Portable/Completion/CompletionOptions.cs index aa475822fa99b..4f85a138385a5 100644 --- a/src/Features/Core/Portable/Completion/CompletionOptions.cs +++ b/src/Features/Core/Portable/Completion/CompletionOptions.cs @@ -30,7 +30,7 @@ internal sealed record class CompletionOptions public bool FilterOutOfScopeLocals { get; init; } = true; public bool ShowXmlDocCommentCompletion { get; init; } = true; public bool? ShowNewSnippetExperience { get; init; } = null; - public bool SnippetCompletion { get; init; } = false; + public bool SnippetCompletion { get; init; } = true; public ExpandedCompletionMode ExpandedCompletionBehavior { get; init; } = ExpandedCompletionMode.AllItems; public NamingStylePreferences? NamingStyleFallbackOptions { get; init; } = null;