From 4cb89e02dfbefc0ec7317e532d6cd466eb5d35c4 Mon Sep 17 00:00:00 2001 From: sawka Date: Thu, 2 May 2024 15:26:17 -0700 Subject: [PATCH] use cmdinput keybindings even when auxview info is open --- src/app/workspace/cmdinput/textareainput.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/app/workspace/cmdinput/textareainput.tsx b/src/app/workspace/cmdinput/textareainput.tsx index a12628dd..4f49c704 100644 --- a/src/app/workspace/cmdinput/textareainput.tsx +++ b/src/app/workspace/cmdinput/textareainput.tsx @@ -617,8 +617,9 @@ class TextAreaInput extends React.Component<{ screen: Screen; onHeightChange: () } } } - - const renderCmdInputKeybindings = inputModel.shouldRenderAuxViewKeybindings(null); + const renderCmdInputKeybindings = + inputModel.shouldRenderAuxViewKeybindings(null) || + inputModel.shouldRenderAuxViewKeybindings(appconst.InputAuxView_Info); const renderHistoryKeybindings = inputModel.shouldRenderAuxViewKeybindings(appconst.InputAuxView_History); return (