From bfdcfec8c954225f79b49ce3e4db4bb76715ae69 Mon Sep 17 00:00:00 2001 From: Seth Bromberger Date: Tue, 26 Jul 2022 03:07:59 +0200 Subject: add spacer element to statusline (#3165) * add spacer element to statusline * docs--- helix-term/src/ui/statusline.rs | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'helix-term') diff --git a/helix-term/src/ui/statusline.rs b/helix-term/src/ui/statusline.rs index 85992c60..e9e478bf 100644 --- a/helix-term/src/ui/statusline.rs +++ b/helix-term/src/ui/statusline.rs @@ -143,6 +143,7 @@ where helix_view::editor::StatusLineElement::Diagnostics => render_diagnostics, helix_view::editor::StatusLineElement::Selections => render_selections, helix_view::editor::StatusLineElement::Position => render_position, + helix_view::editor::StatusLineElement::Spacer => render_spacer, } } @@ -334,3 +335,10 @@ where write(context, title, None); } + +fn render_spacer(context: &mut RenderContext, write: F) +where + F: Fn(&mut RenderContext, String, Option