fix: use line of primary cursor for git blame

This commit is contained in:
Nik Revenco 2025-03-18 03:12:22 +00:00
parent fed006456a
commit b76ddf5d88

View file

@ -76,8 +76,9 @@ fn blame(cx: &mut compositor::Context, _args: Args, event: PromptEvent) -> anyho
} }
let (view, doc) = current_ref!(cx.editor); let (view, doc) = current_ref!(cx.editor);
let text = doc.text();
let selection = doc.selection(view.id); 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 let result = cx
.editor .editor
.diff_providers .diff_providers