feat: add keyboard shortcuts for cycling agent and thinking variant

This commit is contained in:
Bohdan Triapitsyn
2026-01-08 17:20:33 +02:00
parent 4b0ae1d95f
commit bc4425567d
3 changed files with 122 additions and 63 deletions
@@ -575,7 +575,7 @@ export const ChatInput: React.FC<ChatInputProps> = ({ onOpenSettings, scrollToBo
}
}
if (e.key === 'Tab' && !showCommandAutocomplete && !showFileMention) {
if (e.key === 'Tab' && e.shiftKey && !showCommandAutocomplete && !showAgentAutocomplete && !showFileMention) {
e.preventDefault();
cycleAgent();
return;