Preselect first item in code action popup menu
This commit is contained in:
parent
e90276df0b
commit
547c3ecd0c
1 changed files with 3 additions and 1 deletions
|
@ -3503,7 +3503,7 @@ pub fn code_action(cx: &mut Context) {
|
||||||
return;
|
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 {
|
if event != PromptEvent::Validate {
|
||||||
return;
|
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 {
|
let popup = Popup::new("code-action", picker).margin(helix_view::graphics::Margin {
|
||||||
vertical: 1,
|
vertical: 1,
|
||||||
horizontal: 1,
|
horizontal: 1,
|
||||||
|
|
Loading…
Add table
Reference in a new issue