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;