fix: use line of primary cursor for git blame
This commit is contained in:
parent
fed006456a
commit
b76ddf5d88
1 changed files with 2 additions and 1 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Reference in a new issue