mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 19:37:54 +03:00
Support drawing popup frame (#4313)
Co-authored-by: Blaž Hrastnik <blaz@mxxn.io>
This commit is contained in:
parent
06d7dc628e
commit
9ba691cd3a
9 changed files with 123 additions and 28 deletions
|
@ -23,6 +23,7 @@ use helix_core::{
|
|||
use helix_view::{
|
||||
document::{DocumentInlayHints, DocumentInlayHintsId, Mode},
|
||||
editor::Action,
|
||||
graphics::Margin,
|
||||
theme::Style,
|
||||
Document, View,
|
||||
};
|
||||
|
@ -744,7 +745,16 @@ pub fn code_action(cx: &mut Context) {
|
|||
});
|
||||
picker.move_down(); // pre-select the first item
|
||||
|
||||
let popup = Popup::new("code-action", picker).with_scrollbar(false);
|
||||
let margin = if editor.menu_border() {
|
||||
Margin::vertical(1)
|
||||
} else {
|
||||
Margin::none()
|
||||
};
|
||||
|
||||
let popup = Popup::new("code-action", picker)
|
||||
.with_scrollbar(false)
|
||||
.margin(margin);
|
||||
|
||||
compositor.replace_or_push("code-action", popup);
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue