fix: use head instead of anchor for relative line
This commit is contained in:
parent
4f8dc4cad8
commit
b590504143
1 changed files with 1 additions and 1 deletions
|
@ -427,7 +427,7 @@ impl EditorView {
|
||||||
|
|
||||||
let current_line = doc
|
let current_line = doc
|
||||||
.text()
|
.text()
|
||||||
.char_to_line(doc.selection(view.id).primary().anchor);
|
.char_to_line(doc.selection(view.id).primary().head);
|
||||||
|
|
||||||
// it's used inside an iterator so the collect isn't needless:
|
// it's used inside an iterator so the collect isn't needless:
|
||||||
// https://github.com/rust-lang/rust-clippy/issues/6164
|
// https://github.com/rust-lang/rust-clippy/issues/6164
|
||||||
|
|
Loading…
Add table
Reference in a new issue