Skip to content

Commit

Permalink
feat(player): Add g/G alt keybinds for home/end
Browse files Browse the repository at this point in the history
  • Loading branch information
gabe565 committed Apr 27, 2024
1 parent 293d248 commit c00c99c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions internal/movie/keymap.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@ func newKeymap() keymap {
key.WithHelp("←→", "navigate"),
),
home: key.NewBinding(
key.WithKeys("home"),
key.WithHelp("home", "go to start"),
key.WithKeys("g", "home"),
key.WithHelp("g/home", "go to start"),
),
end: key.NewBinding(
key.WithKeys("end"),
key.WithHelp("end", "go to end"),
key.WithKeys("G", "end"),
key.WithHelp("G/end", "go to end"),
),
choose: key.NewBinding(
key.WithKeys(" ", "enter"),
Expand Down

0 comments on commit c00c99c

Please sign in to comment.