From b76ddf5d882c15724f933e41a80550790ae4603a Mon Sep 17 00:00:00 2001 From: Nik Revenco <154856872+NikitaRevenco@users.noreply.github.com> Date: Tue, 18 Mar 2025 03:12:22 +0000 Subject: [PATCH] fix: use line of primary cursor for git blame --- helix-term/src/commands/typed.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/helix-term/src/commands/typed.rs b/helix-term/src/commands/typed.rs index 6a668b76..0d5e1a98 100644 --- a/helix-term/src/commands/typed.rs +++ b/helix-term/src/commands/typed.rs @@ -76,8 +76,9 @@ fn blame(cx: &mut compositor::Context, _args: Args, event: PromptEvent) -> anyho } let (view, doc) = current_ref!(cx.editor); + let text = doc.text(); let selection = doc.selection(view.id); - let cursor_line = selection.primary().cursor(doc.text().slice(..)); + let cursor_line = text.char_to_line(selection.primary().cursor(doc.text().slice(..))); let result = cx .editor .diff_providers