diff --git a/helix-term/src/ui/picker.rs b/helix-term/src/ui/picker.rs index 803e2d65bb78..26349a495a56 100644 --- a/helix-term/src/ui/picker.rs +++ b/helix-term/src/ui/picker.rs @@ -650,10 +650,10 @@ impl Component for Picker { cx.editor.reset_idle_timer(); match key_event { - shift!(Tab) | key!(Up) | ctrl!('p') => { + shift!(Tab) | key!(Up) | ctrl!('p') | ctrl!('k') => { self.move_by(1, Direction::Backward); } - key!(Tab) | key!(Down) | ctrl!('n') => { + key!(Tab) | key!(Down) | ctrl!('n') | ctrl!('j') => { self.move_by(1, Direction::Forward); } key!(PageDown) | ctrl!('d') => {