From 711aa58d401128f3e74e7870d91ef11f90c2340e Mon Sep 17 00:00:00 2001 From: Nik Revenco <154856872+NikitaRevenco@users.noreply.github.com> Date: Tue, 18 Mar 2025 19:01:05 +0000 Subject: [PATCH] feat: implement end of line virtual text for the current line --- helix-term/src/ui/editor.rs | 17 ++++++++--------- helix-term/src/ui/text_decorations/blame.rs | 4 +++- 2 files changed, 11 insertions(+), 10 deletions(-) diff --git a/helix-term/src/ui/editor.rs b/helix-term/src/ui/editor.rs index ff127b2f..3ce7aa4e 100644 --- a/helix-term/src/ui/editor.rs +++ b/helix-term/src/ui/editor.rs @@ -201,15 +201,14 @@ impl EditorView { inline_diagnostic_config, config.end_of_line_diagnostics, )); - log::error!("{}", primary_cursor); - // if config.vcs.blame { - // decorations.add_decoration(text_decorations::blame::EolBlame::new( - // doc, - // theme, - // primary_cursor, - // "hello world".to_string(), - // )); - // } + if config.vcs.blame { + decorations.add_decoration(text_decorations::blame::EolBlame::new( + doc, + theme, + doc.text().char_to_line(primary_cursor), + "hello world".to_string(), + )); + } render_document( surface, inner, diff --git a/helix-term/src/ui/text_decorations/blame.rs b/helix-term/src/ui/text_decorations/blame.rs index 585e9821..3f64522e 100644 --- a/helix-term/src/ui/text_decorations/blame.rs +++ b/helix-term/src/ui/text_decorations/blame.rs @@ -40,6 +40,9 @@ impl Decoration for EolBlame<'_> { pos: LinePos, virt_off: Position, ) -> Position { + if self.cursor != pos.doc_line { + return Position::new(0, 0); + } let row = pos.visual_line; let col = virt_off.col as u16; // if col != self.cursor as u16 { @@ -67,7 +70,6 @@ impl Decoration for EolBlame<'_> { .0 }) .unwrap_or(start_col); - log::error!("cursor: {}, row: {row}, col: {col}, start_col: {start_col}, draw_col: {draw_col}, end_col: {end_col}", self.cursor); let col_off = end_col - start_col;