aboutsummaryrefslogtreecommitdiff
path: root/helix-term
diff options
context:
space:
mode:
authorA-Walrus2022-09-13 09:24:48 +0000
committerGitHub2022-09-13 09:24:48 +0000
commitd38950bdf9ac786dc518fa723b92a3f189f2b960 (patch)
tree66cfada423200ec359661d50404f6305e4def5be /helix-term
parentac460ac8371e2d7cfe99b9e06be9b8f5edac1c44 (diff)
Remove border from code actions popup (#3444)
Diffstat (limited to 'helix-term')
-rw-r--r--helix-term/src/commands/lsp.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/helix-term/src/commands/lsp.rs b/helix-term/src/commands/lsp.rs
index 61eed638..1113b44e 100644
--- a/helix-term/src/commands/lsp.rs
+++ b/helix-term/src/commands/lsp.rs
@@ -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);
},
)