mirror of
https://github.com/charmbracelet/glow.git
synced 2026-08-22 16:14:17 +02:00
u/d also pages back/forth in the the file listing
This commit is contained in:
parent
8471c52fd7
commit
60cee4a9a1
1 changed files with 2 additions and 2 deletions
|
|
@ -384,9 +384,9 @@ func stashUpdate(msg tea.Msg, m stashModel) (stashModel, tea.Cmd) {
|
|||
if key, ok := msg.(tea.KeyMsg); ok {
|
||||
if key.Type == tea.KeyRune {
|
||||
switch key.Rune {
|
||||
case 'b':
|
||||
case 'b', 'u':
|
||||
m.paginator.PrevPage()
|
||||
case 'f':
|
||||
case 'f', 'd':
|
||||
m.paginator.NextPage()
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue