Skip to content

Commit

Permalink
ctrl-c, not ctrl-q, is quit
Browse files Browse the repository at this point in the history
  • Loading branch information
jepler committed Oct 2, 2023
1 parent 3852855 commit 94562de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/chap/commands/tui.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 94562de

Please sign in to comment.