We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a463cd commit 17bdb5dCopy full SHA for 17bdb5d
packages/opencode/src/cli/cmd/tui/ui/dialog.tsx
@@ -57,7 +57,7 @@ function init() {
57
})
58
59
useKeyboard((evt) => {
60
- if (evt.name === "escape" && store.stack.length > 0) {
+ if ((evt.name === "escape" || (evt.ctrl && evt.name === "c")) && store.stack.length > 0) {
61
const current = store.stack.at(-1)!
62
current.onClose?.()
63
setStore("stack", store.stack.slice(0, -1))
0 commit comments