mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-22 09:26:19 +04:00
Removing C-j and C-k from completion menu navigation (#5070)
This commit is contained in:
parent
f0c2e898b4
commit
61e1e6160a
@ -252,12 +252,12 @@ fn handle_event(&mut self, event: &Event, cx: &mut Context) -> EventResult {
|
||||
return EventResult::Consumed(close_fn);
|
||||
}
|
||||
// arrow up/ctrl-p/shift-tab prev completion choice (including updating the doc)
|
||||
shift!(Tab) | key!(Up) | ctrl!('p') | ctrl!('k') => {
|
||||
shift!(Tab) | key!(Up) | ctrl!('p') => {
|
||||
self.move_up();
|
||||
(self.callback_fn)(cx.editor, self.selection(), MenuEvent::Update);
|
||||
return EventResult::Consumed(None);
|
||||
}
|
||||
key!(Tab) | key!(Down) | ctrl!('n') | ctrl!('j') => {
|
||||
key!(Tab) | key!(Down) | ctrl!('n') => {
|
||||
// arrow down/ctrl-n/tab advances completion choice (including updating the doc)
|
||||
self.move_down();
|
||||
(self.callback_fn)(cx.editor, self.selection(), MenuEvent::Update);
|
||||
|
Loading…
Reference in New Issue
Block a user