diff options
| -rw-r--r-- | README.md | 6 | ||||
| -rw-r--r-- | internal/ui/table.go | 4 |
2 files changed, 8 insertions, 2 deletions
@@ -23,10 +23,10 @@ Task Samurai invokes the `task` command to read and modify tasks. The tasks are - `b/pgup`: page up - `f/pgdn/space`: page down - `u` or `ctrl+u`: half page up -- `d` or `ctrl+d`: half page down +- `ctrl+d`: half page down - `g/home/0`: go to start - `G/end`: go to end -- `enter`: expand/collapse the current cell +- `enter` or `i`: expand/collapse or edit the current cell depending on the column ### Task actions @@ -39,6 +39,8 @@ Task Samurai invokes the `task` command to read and modify tasks. The tasks are - `a`: annotate task - `A`: replace annotations - `p`: set priority +- `t`: randomize theme +- `T`: reset theme ### Search diff --git a/internal/ui/table.go b/internal/ui/table.go index f5e614a..bcfa017 100644 --- a/internal/ui/table.go +++ b/internal/ui/table.go @@ -634,6 +634,7 @@ func (m Model) View() string { if m.showHelp { return lipgloss.JoinVertical(lipgloss.Left, m.tbl.HelpView(), + "enter/i: edit or expand cell", "E: edit task", "s: toggle start/stop", "D: mark task done", @@ -643,7 +644,10 @@ func (m Model) View() string { "a: annotate task", "A: replace annotations", "p: set priority", + "t: randomize theme", + "T: reset theme", "/, ?: search", + "n/N: next/prev search match", "esc: close help/search", "q: quit", "H: help", // show help toggle line |
