diff options
author | Seth Bromberger | 2022-07-26 01:07:59 +0000 |
---|---|---|
committer | GitHub | 2022-07-26 01:07:59 +0000 |
commit | bfdcfec8c954225f79b49ce3e4db4bb76715ae69 (patch) | |
tree | 7c0f58f3ba807a0fc02112b52b239af6a48cd408 /helix-term | |
parent | 742d16026eb288b93e334a92863bb46ec2b500e7 (diff) |
add spacer element to statusline (#3165)
* add spacer element to statusline
* docs
Diffstat (limited to 'helix-term')
-rw-r--r-- | helix-term/src/ui/statusline.rs | 8 |
1 files changed, 8 insertions, 0 deletions
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<F>(context: &mut RenderContext, write: F) +where + F: Fn(&mut RenderContext, String, Option<Style>) + Copy, +{ + write(context, String::from(" "), None); +} |