diff options
author | Benjamin Chausse <benjamin@chausse.xyz> | 2024-11-24 14:49:38 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-24 14:49:38 -0500 |
commit | 4582c37a9daf9ef644805b110defea898fd4b0e3 (patch) | |
tree | 27f35f1fbb3b238f3ec52719ade84055874f8f51 /internal/picker | |
parent | 5d5e0fa96bcda46c86eeccfe9c9b918f8c1ace00 (diff) |
fix: update roadmap + small help message update (#8)
Diffstat (limited to 'internal/picker')
-rw-r--r-- | internal/picker/keys.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/internal/picker/keys.go b/internal/picker/keys.go index 26b7e80..e219878 100644 --- a/internal/picker/keys.go +++ b/internal/picker/keys.go @@ -10,7 +10,7 @@ func newKeybinds() keybinds { return keybinds{ next: key.NewBinding( key.WithKeys("j", "down"), - key.WithHelp("j", "prev. slider"), + key.WithHelp("j", "prev slider"), ), prev: key.NewBinding( key.WithKeys("k", "up"), @@ -29,5 +29,4 @@ func (m Model) AllKeys() [][]key.Binding { keys[0] = Keys() copy(keys[1:], m.sliders[m.active].AllKeys()) return keys - // return append(m.sliders[m.active].AllKeys(), Keys()) } |