From c9ed42cdec95b67b0d0ed15218daff37358ca86f Mon Sep 17 00:00:00 2001 From: Nick Date: Sat, 31 Dec 2022 19:48:14 +0530 Subject: [PATCH] Add a status line element that shows just the basename of the file (#5318) --- book/src/configuration.md | 1 + helix-term/src/ui/statusline.rs | 21 +++++++++++++++++++++ helix-view/src/editor.rs | 5 ++++- 3 files changed, 26 insertions(+), 1 deletion(-) diff --git a/book/src/configuration.md b/book/src/configuration.md index 0890d2832..a35482e6e 100644 --- a/book/src/configuration.md +++ b/book/src/configuration.md @@ -97,6 +97,7 @@ The following statusline elements can be configured: | `mode` | The current editor mode (`mode.normal`/`mode.insert`/`mode.select`) | | `spinner` | A progress spinner indicating LSP activity | | `file-name` | The path/name of the opened file | +| `file-base-name` | The basename of the opened file | | `file-encoding` | The encoding of the opened file if it differs from UTF-8 | | `file-line-ending` | The file line endings (CRLF or LF) | | `total-line-numbers` | The total line numbers of the opened file | diff --git a/helix-term/src/ui/statusline.rs b/helix-term/src/ui/statusline.rs index 501faea39..a25b4540d 100644 --- a/helix-term/src/ui/statusline.rs +++ b/helix-term/src/ui/statusline.rs @@ -139,6 +139,7 @@ where match element_id { helix_view::editor::StatusLineElement::Mode => render_mode, helix_view::editor::StatusLineElement::Spinner => render_lsp_spinner, + helix_view::editor::StatusLineElement::FileBaseName => render_file_base_name, helix_view::editor::StatusLineElement::FileName => render_file_name, helix_view::editor::StatusLineElement::FileEncoding => render_file_encoding, helix_view::editor::StatusLineElement::FileLineEnding => render_file_line_ending, @@ -426,6 +427,26 @@ where write(context, title, None); } +fn render_file_base_name(context: &mut RenderContext, write: F) +where + F: Fn(&mut RenderContext, String, Option