From 547c3ecd0c72f2b88fa2b3c1321ad9adcb42ee47 Mon Sep 17 00:00:00 2001 From: Gokul Soumya Date: Mon, 7 Feb 2022 21:34:06 +0530 Subject: [PATCH] Preselect first item in code action popup menu --- helix-term/src/commands.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs index 9b98e6c48..d9fb2d555 100644 --- a/helix-term/src/commands.rs +++ b/helix-term/src/commands.rs @@ -3503,7 +3503,7 @@ pub fn code_action(cx: &mut Context) { return; } - let picker = ui::Menu::new(actions, move |editor, code_action, event| { + let mut picker = ui::Menu::new(actions, move |editor, code_action, event| { if event != PromptEvent::Validate { return; } @@ -3531,6 +3531,8 @@ pub fn code_action(cx: &mut Context) { } } }); + picker.move_down(); // pre-select the first item + let popup = Popup::new("code-action", picker).margin(helix_view::graphics::Margin { vertical: 1, horizontal: 1,