wip(desktop): progress

pull/5568/head
Adam 2025-12-15 06:24:26 -06:00
parent ae8c4154aa
commit 34db739442
No known key found for this signature in database
GPG Key ID: 9CB48779AF150E75
1 changed files with 2 additions and 0 deletions

View File

@ -478,6 +478,8 @@ export const PromptInput: Component<PromptInputProps> = (props) => {
}
if (event.key === "ArrowUp" || event.key === "ArrowDown") {
// Skip history navigation when modifier keys are pressed (used for other commands)
if (event.altKey || event.ctrlKey || event.metaKey) return
const { collapsed, onFirstLine, onLastLine } = getCaretLineState()
if (!collapsed) return
const cursorPos = getCursorPosition(editorRef)