4
4
# Python imports.
5
5
from argparse import ArgumentParser , Namespace
6
6
from inspect import cleandoc
7
+ from operator import attrgetter
7
8
8
9
##############################################################################
9
10
# Local imports.
@@ -43,6 +44,14 @@ def get_args() -> Namespace:
43
44
action = "store_true" ,
44
45
)
45
46
47
+ # Add --bindings
48
+ parser .add_argument (
49
+ "-b" ,
50
+ "--bindings" ,
51
+ help = "List commands that can have their bindings changed" ,
52
+ action = "store_true" ,
53
+ )
54
+
46
55
# The remainder is going to be the initial command.
47
56
parser .add_argument (
48
57
"command" ,
@@ -54,11 +63,33 @@ def get_args() -> Namespace:
54
63
return parser .parse_args ()
55
64
56
65
66
+ ##############################################################################
67
+ def show_bindable_commands () -> None :
68
+ """Show the commands that can have bindings applied."""
69
+ from rich .console import Console
70
+ from rich .markup import escape
71
+
72
+ from .screens import Main
73
+
74
+ console = Console (highlight = False )
75
+ for command in sorted (Main .COMMAND_MESSAGES , key = attrgetter ("__name__" )):
76
+ if command ().has_binding :
77
+ console .print (
78
+ f"[bold]{ escape (command .__name__ )} [/] [dim italic]- { escape (command .tooltip ())} [/]"
79
+ )
80
+ console .print (
81
+ f" [dim italic]Default: { escape (command .binding ().key )} [/]"
82
+ )
83
+
84
+
57
85
##############################################################################
58
86
def main () -> None :
59
87
"""The main entry point."""
60
- if (args := get_args ()).license :
88
+ args = get_args ()
89
+ if args .license :
61
90
print (cleandoc (Hike .HELP_LICENSE ))
91
+ elif args .bindings :
92
+ show_bindable_commands ()
62
93
else :
63
94
Hike (args ).run ()
64
95
0 commit comments