Skip to content

Commit 4167384

Browse files
A-Walrusjdrst
authored andcommitted
Remove border from code actions popup (helix-editor#3444)
1 parent e9f517d commit 4167384

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

helix-term/src/commands/lsp.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -491,8 +491,7 @@ pub fn code_action(cx: &mut Context) {
491491
});
492492
picker.move_down(); // pre-select the first item
493493

494-
let popup =
495-
Popup::new("code-action", picker).margin(helix_view::graphics::Margin::all(1));
494+
let popup = Popup::new("code-action", picker);
496495
compositor.replace_or_push("code-action", popup);
497496
},
498497
)

0 commit comments

Comments
 (0)