From 4c7056980571dd91487e40cd6cb0c24d73b391de Mon Sep 17 00:00:00 2001 From: Aaron Munger Date: Thu, 19 Sep 2024 14:13:32 -0700 Subject: [PATCH] dont clear if inline chat should close instead (#16062) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index e6e95939ae1..c47aa4853c2 100644 --- a/package.json +++ b/package.json @@ -146,7 +146,7 @@ }, { "key": "escape", - "when": "isCompositeNotebook && !editorHoverVisible && !suggestWidgetVisible && !isComposing && !inSnippetMode && !exceptionWidgetVisible && !selectionAnchorSet && !LinkedEditingInputVisible && !renameInputVisible && !editorHasSelection && !accessibilityHelpWidgetVisible && !breakpointWidgetVisible && !findWidgetVisible && !markersNavigationVisible && !parameterHintsVisible && !editorHasMultipleSelections && !notificationToastsVisible", + "when": "isCompositeNotebook && !editorHoverVisible && !suggestWidgetVisible && !isComposing && !inSnippetMode && !exceptionWidgetVisible && !selectionAnchorSet && !LinkedEditingInputVisible && !renameInputVisible && !editorHasSelection && !accessibilityHelpWidgetVisible && !breakpointWidgetVisible && !findWidgetVisible && !markersNavigationVisible && !parameterHintsVisible && !editorHasMultipleSelections && !notificationToastsVisible && !inlineChatVisible", "command": "interactive.input.clear" }, {