diff options
author | Matouš Dzivjak | 2022-05-03 08:28:41 +0000 |
---|---|---|
committer | GitHub | 2022-05-03 08:28:41 +0000 |
commit | d2b1add1f41c9d9a655a4637e3e276eb92e8eefb (patch) | |
tree | 8e86ae80d1a268ab89df1fa6e29a5f32257a67ef /helix-term | |
parent | 042463a4d1c6eab144b89f775d79759bd6c3df0a (diff) |
feat(term): wrap command palette in overlay (#2378)
Looks better and is consistent with the rest, nothing else.
Diffstat (limited to 'helix-term')
-rw-r--r-- | helix-term/src/commands.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs index e2d10d21..07d805ca 100644 --- a/helix-term/src/commands.rs +++ b/helix-term/src/commands.rs @@ -2219,7 +2219,7 @@ pub fn command_palette(cx: &mut Context) { command.execute(&mut ctx); }, ); - compositor.push(Box::new(picker)); + compositor.push(Box::new(overlayed(picker))); }, )); } |