Skip to content

Commit

Permalink
Remove border from code actions popup (helix-editor#3444)
Browse files Browse the repository at this point in the history
  • Loading branch information
A-Walrus authored and Shekhinah Memmel committed Dec 11, 2022
1 parent 848c276 commit 413b8ab
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions helix-term/src/commands/lsp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -491,8 +491,7 @@ 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::all(1));
let popup = Popup::new("code-action", picker);
compositor.replace_or_push("code-action", popup);
},
)
Expand Down

0 comments on commit 413b8ab

Please sign in to comment.