From 16e743d8d908a5a4aa75613bfd93a6adec2d162a Mon Sep 17 00:00:00 2001 From: Dan Helfman Date: Thu, 21 May 2026 11:41:44 -0700 Subject: [PATCH] More browse action option list keys. --- borgmatic/actions/browse/widgets.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/borgmatic/actions/browse/widgets.py b/borgmatic/actions/browse/widgets.py index c8e87c03..61c9f4df 100644 --- a/borgmatic/actions/browse/widgets.py +++ b/borgmatic/actions/browse/widgets.py @@ -9,8 +9,9 @@ import borgmatic.actions.browse.workers OPTION_LIST_BINDINGS = textual.widgets.OptionList.BINDINGS + [ - textual.binding.Binding(key='j', action='cursor_down', description='down', show=False), - textual.binding.Binding(key='k', action='cursor_up', description='up', show=False), + textual.binding.Binding(key='up,k', action='cursor_up', description='up', show=True, priority=True), + textual.binding.Binding(key='down,j', action='cursor_down', description='down', show=True, priority=True), + textual.binding.Binding(key='enter', action='select', description='select', show=True, priority=True), textual.binding.Binding(key='right,l', action='select', description='select', show=False), ]