From 00b152facd8cc9d671f1781a3b931bcc9830efce Mon Sep 17 00:00:00 2001 From: spectre256 <72505298+spectre256@users.noreply.github.com> Date: Thu, 8 Jun 2023 15:34:07 -0400 Subject: [PATCH] Add register statusline element (#7222) --- book/src/configuration.md | 1 + helix-term/src/ui/statusline.rs | 10 ++++++++++ helix-view/src/editor.rs | 11 ++++++++++- 3 files changed, 21 insertions(+), 1 deletion(-) diff --git a/book/src/configuration.md b/book/src/configuration.md index 5df63207a..b7ddfdef8 100644 --- a/book/src/configuration.md +++ b/book/src/configuration.md @@ -117,6 +117,7 @@ The following statusline elements can be configured: | `separator` | The string defined in `editor.statusline.separator` (defaults to `"│"`) | | `spacer` | Inserts a space between elements (multiple/contiguous spacers may be specified) | | `version-control` | The current branch name or detached commit hash of the opened workspace | +| `register` | The current selected register | ### `[editor.lsp]` Section diff --git a/helix-term/src/ui/statusline.rs b/helix-term/src/ui/statusline.rs index dbf5ac314..61fca609b 100644 --- a/helix-term/src/ui/statusline.rs +++ b/helix-term/src/ui/statusline.rs @@ -160,6 +160,7 @@ where helix_view::editor::StatusLineElement::Separator => render_separator, helix_view::editor::StatusLineElement::Spacer => render_spacer, helix_view::editor::StatusLineElement::VersionControl => render_version_control, + helix_view::editor::StatusLineElement::Register => render_register, } } @@ -489,3 +490,12 @@ where write(context, head, None); } + +fn render_register(context: &mut RenderContext, write: F) +where + F: Fn(&mut RenderContext, String, Option