diff --git a/src/LanguageServer/Protocol/Handler/Configuration/DidChangeConfigurationNotificationHandler_OptionList.cs b/src/LanguageServer/Protocol/Handler/Configuration/DidChangeConfigurationNotificationHandler_OptionList.cs index b5e15a8ebe982..12e5a6472c8cf 100644 --- a/src/LanguageServer/Protocol/Handler/Configuration/DidChangeConfigurationNotificationHandler_OptionList.cs +++ b/src/LanguageServer/Protocol/Handler/Configuration/DidChangeConfigurationNotificationHandler_OptionList.cs @@ -27,6 +27,7 @@ internal partial class DidChangeConfigurationNotificationHandler CompletionOptionsStorage.ShowNameSuggestions, CompletionOptionsStorage.ProvideRegexCompletions, CompletionOptionsStorage.ShowItemsFromUnimportedNamespaces, + CompletionOptionsStorage.TriggerInArgumentLists, QuickInfoOptionsStorage.ShowRemarksInQuickInfo, MetadataAsSourceOptionsStorage.NavigateToDecompiledSources, HighlightingOptionsStorage.HighlightRelatedJsonComponentsUnderCursor, diff --git a/src/LanguageServer/ProtocolUnitTests/Configuration/DidChangeConfigurationNotificationHandlerTest.cs b/src/LanguageServer/ProtocolUnitTests/Configuration/DidChangeConfigurationNotificationHandlerTest.cs index 21d93d5e6d634..5b06f73b3459d 100644 --- a/src/LanguageServer/ProtocolUnitTests/Configuration/DidChangeConfigurationNotificationHandlerTest.cs +++ b/src/LanguageServer/ProtocolUnitTests/Configuration/DidChangeConfigurationNotificationHandlerTest.cs @@ -117,6 +117,7 @@ public void VerifyLspClientOptionNames() "completion.dotnet_show_name_completion_suggestions", "completion.dotnet_provide_regex_completions", "completion.dotnet_show_completion_items_from_unimported_namespaces", + "completion.dotnet_trigger_completion_in_argument_lists", "quick_info.dotnet_show_remarks_in_quick_info", "navigation.dotnet_navigate_to_decompiled_sources", "highlighting.dotnet_highlight_related_json_components",