Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Hike ChangeLog

## Unreleased

**Released: WiP**

- Fixed the `help` command in the command line widget not pulling up the
help dialog. ([#117](https://github.com/davep/hike/pull/117))

## v1.1.1

**Released: 2025-08-03**
Expand Down
5 changes: 5 additions & 0 deletions src/hike/screens/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,11 @@ def _watch_navigation_visible(self) -> None:
with update_configuration() as config:
config.navigation_visible = self.navigation_visible

@on(Help)
async def _show_help(self) -> None:
"""Handle the help action."""
await self.run_action("help_command")

@on(HandleInput)
def _handle_input(self, message: HandleInput) -> None:
"""Handle input as if the user had typed it in.
Expand Down
Loading