From 94562de018b3abd05758ed169ffe14b5bc71f8d5 Mon Sep 17 00:00:00 2001 From: Jeff Epler Date: Mon, 2 Oct 2023 11:25:35 -0500 Subject: [PATCH] ctrl-c, not ctrl-q, is quit --- src/chap/commands/tui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/chap/commands/tui.py b/src/chap/commands/tui.py index 12dfa5b..05d7a5b 100644 --- a/src/chap/commands/tui.py +++ b/src/chap/commands/tui.py @@ -51,7 +51,7 @@ class CancelButton(Button): class Tui(App): CSS_PATH = "tui.css" BINDINGS = [ - Binding("ctrl+q", "quit", "Quit", show=True, priority=True), + Binding("ctrl+c", "quit", "Quit", show=True, priority=True), ] def __init__(self, api=None, session=None):