diff options
| author | Paul Bütow <1224732+snonux@users.noreply.github.com> | 2025-06-20 22:59:24 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-06-20 22:59:24 +0300 |
| commit | 676b166996625131b07abd5515a39a38c366e0df (patch) | |
| tree | d985458a016339ac9e4bbf0ecba1804aea8e19bf | |
| parent | da8c880889801c72f12dbdef2d2e677a0f510bc3 (diff) | |
| parent | c1b3b08915d56390bb665affcbfbf33ac0fd2274 (diff) | |
Merge pull request #66 from snonux/codex/add-esc-to-help-screen
Add ESC help screen entry
| -rw-r--r-- | README.md | 11 | ||||
| -rw-r--r-- | internal/ui/table.go | 1 |
2 files changed, 12 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..94c9878 --- /dev/null +++ b/README.md @@ -0,0 +1,11 @@ +# tasksamurai + +tasksamurai is a terminal interface for Taskwarrior built with Bubble Tea. + +## Hotkeys + +- `h`: show the help screen +- `esc`: close the help screen or cancel an active search +- `q`: quit the application + +See the help screen for additional shortcuts. diff --git a/internal/ui/table.go b/internal/ui/table.go index 5ac329f..223f1d1 100644 --- a/internal/ui/table.go +++ b/internal/ui/table.go @@ -442,6 +442,7 @@ func (m Model) View() string { "A: replace annotations", "p: set priority", "/, ?: search", + "esc: close help/search", "q: quit", "H: help", // show help toggle line ) |
