Skip to content

Commit

Permalink
fix: prefix binding actions with app namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
fresh2dev committed Sep 8, 2024
1 parent 218b69a commit aae3485
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/argparse_tui/tui.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,13 @@ class CommandBuilder(Screen):
Binding(key="ctrl+y", action="copy_command_string", description="Copy Command"),
Binding(
key="ctrl+t,escape",
action="focus_command_tree",
action="app.focus_command_tree",
description="Focus Command Tree",
),
Binding(key="ctrl+o,?", action="show_command_info", description="Command Info"),
Binding(key="ctrl+s,i,/", action="focus('search')", description="Search"),
Binding(
key="ctrl+o,?", action="app.show_command_info", description="Command Info"
),
Binding(key="ctrl+s,i,/", action="app.focus('search')", description="Search"),
Binding(key="f1", action="about", description="About"),
Binding("q", "exit", show=False),
]
Expand Down

0 comments on commit aae3485

Please sign in to comment.