fix(cli): disable auto-completion on Shift+Tab to preserve mode cycling (#19451)

This commit is contained in:
N. Taylor Mullen
2026-02-18 14:08:38 -08:00
committed by GitHub
parent 87f5dd15d6
commit 8910b2720f
4 changed files with 103 additions and 4 deletions
@@ -975,6 +975,7 @@ export const InputPrompt: React.FC<InputPromptProps> = ({
// Handle Tab key for ghost text acceptance
if (
key.name === 'tab' &&
!key.shift &&
!completion.showSuggestions &&
completion.promptCompletion.text
) {