diff options
| author | Paul Bütow <1224732+snonux@users.noreply.github.com> | 2025-06-20 22:55:11 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-06-20 22:55:11 +0300 |
| commit | da8c880889801c72f12dbdef2d2e677a0f510bc3 (patch) | |
| tree | 16d43d9bc21a7d95ee182ea4419f896f67da6feb /internal/ui/table.go | |
| parent | 98302ed5e062bb1b034faf7b3ae22179e200c951 (diff) | |
| parent | 47322bf01241e16546977cc0e89501598f6e38ab (diff) | |
Merge pull request #65 from snonux/codex/change-help-hotkey-to-h
Fix help hotkey overlap
Diffstat (limited to 'internal/ui/table.go')
| -rw-r--r-- | internal/ui/table.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/ui/table.go b/internal/ui/table.go index c98c3f0..5ac329f 100644 --- a/internal/ui/table.go +++ b/internal/ui/table.go @@ -274,7 +274,7 @@ func (m Model) Update(msg tea.Msg) (tea.Model, tea.Cmd) { return m, cmd } switch msg.String() { - case "h": + case "H": m.showHelp = true return m, nil case "q", "esc": @@ -443,7 +443,7 @@ func (m Model) View() string { "p: set priority", "/, ?: search", "q: quit", - "h: help", // show help toggle line + "H: help", // show help toggle line ) } view := lipgloss.JoinVertical(lipgloss.Left, |
