diff --git a/internal/ui/model.go b/internal/ui/model.go index 4fcc97c..ea245ea 100644 --- a/internal/ui/model.go +++ b/internal/ui/model.go @@ -364,7 +364,7 @@ func (m Model) Update(msg tea.Msg) (tea.Model, tea.Cmd) { } m.inputBuffer = "" - case "j", "down": + case "j", "down", "ctrl+n": keyHandled = true count := m.getRepeatCount() for i := 0; i < count; i++ { @@ -381,7 +381,7 @@ func (m Model) Update(msg tea.Msg) (tea.Model, tea.Cmd) { } m.inputBuffer = "" - case "k", "up": + case "k", "up", "ctrl+p": keyHandled = true count := m.getRepeatCount() for i := 0; i < count; i++ {