Skip to content

Commit 56d638d

Browse files
authored
🔀 Merge pull request #69 from davep/rebind-commands
Provide a method of overriding the default application command keyboard bindings
2 parents 32834f2 + 53dbf07 commit 56d638d

File tree

6 files changed

+47
-8
lines changed

6 files changed

+47
-8
lines changed

ChangeLog.md

+4
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@
88
<kbd>ctrl</kbd>+<kbd>g</kbd> (<kbd>ctrl</kbd>+<kbd>r</kbd> was already
99
used for reloading the document).
1010
([#68](https://github.com/davep/hike/pull/68))
11+
- Added support for changing the keyboard bindings of the main application
12+
commands. ([#69](https://github.com/davep/hike/pull/69))
13+
- Added `--bindings` as a command line switch; which lists all the commands
14+
([#69](https://github.com/davep/hike/pull/69))
1115

1216
## v0.8.0
1317

requirements-dev.lock

+5-5
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
-e file:.
1313
aiohappyeyeballs==2.6.1
1414
# via aiohttp
15-
aiohttp==3.11.14
15+
aiohttp==3.11.15
1616
# via aiohttp-jinja2
1717
# via textual-dev
1818
# via textual-serve
@@ -69,7 +69,7 @@ mdurl==0.1.2
6969
# via markdown-it-py
7070
msgpack==1.1.0
7171
# via textual-dev
72-
multidict==6.2.0
72+
multidict==6.3.0
7373
# via aiohttp
7474
# via yarl
7575
mypy==1.15.0
@@ -100,14 +100,14 @@ rich==14.0.0
100100
# via textual-serve
101101
sniffio==1.3.1
102102
# via anyio
103-
textual==3.0.0
103+
textual==3.0.1
104104
# via hike
105105
# via textual-dev
106106
# via textual-enhanced
107107
# via textual-fspicker
108108
# via textual-serve
109109
textual-dev==1.7.0
110-
textual-enhanced==0.9.0
110+
textual-enhanced==0.10.0
111111
# via hike
112112
textual-fspicker==0.4.1
113113
# via hike
@@ -120,7 +120,7 @@ typing-extensions==4.13.0
120120
# via textual-dev
121121
uc-micro-py==1.0.3
122122
# via linkify-it-py
123-
virtualenv==20.29.3
123+
virtualenv==20.30.0
124124
# via pre-commit
125125
xdg-base-dirs==6.0.2
126126
# via hike

requirements.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,11 @@ rich==14.0.0
4444
# via textual
4545
sniffio==1.3.1
4646
# via anyio
47-
textual==3.0.0
47+
textual==3.0.1
4848
# via hike
4949
# via textual-enhanced
5050
# via textual-fspicker
51-
textual-enhanced==0.9.0
51+
textual-enhanced==0.10.0
5252
# via hike
5353
textual-fspicker==0.4.1
5454
# via hike

src/hike/__main__.py

+32-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
# Python imports.
55
from argparse import ArgumentParser, Namespace
66
from inspect import cleandoc
7+
from operator import attrgetter
78

89
##############################################################################
910
# Local imports.
@@ -43,6 +44,14 @@ def get_args() -> Namespace:
4344
action="store_true",
4445
)
4546

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+
4655
# The remainder is going to be the initial command.
4756
parser.add_argument(
4857
"command",
@@ -54,11 +63,33 @@ def get_args() -> Namespace:
5463
return parser.parse_args()
5564

5665

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+
5785
##############################################################################
5886
def main() -> None:
5987
"""The main entry point."""
60-
if (args := get_args()).license:
88+
args = get_args()
89+
if args.license:
6190
print(cleandoc(Hike.HELP_LICENSE))
91+
elif args.bindings:
92+
show_bindable_commands()
6293
else:
6394
Hike(args).run()
6495

src/hike/data/config.py

+3
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,9 @@ class Configuration:
4848
local_start_location: str = "~"
4949
"""The start location for the local file system browser."""
5050

51+
bindings: dict[str, str] = field(default_factory=dict)
52+
"""Command keyboard binding overrides."""
53+
5154

5255
##############################################################################
5356
def configuration_file() -> Path:

src/hike/hike.py

+1
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ def __init__(self, arguments: Namespace) -> None:
6767
self.theme = configuration.theme
6868
except InvalidThemeError:
6969
pass
70+
self.update_keymap(configuration.bindings)
7071

7172
def watch_theme(self) -> None:
7273
"""Save the application's theme when it's changed."""

0 commit comments

Comments
 (0)