1
0
Fork 0
mirror of https://github.com/helix-editor/helix synced 2024-05-20 03:46:05 +02:00

Fix line-wise `p` pasting before the current line instead of after.

This commit is contained in:
Nathan Vegdahl 2021-07-20 10:56:27 -07:00
parent 1910fa7723
commit e8a3980e46

View File

@ -3093,7 +3093,10 @@ fn paste_impl(
// paste linewise before
(Paste::Before, true) => text.line_to_char(text.char_to_line(range.from())),
// paste linewise after
(Paste::After, true) => text.line_to_char(text.char_to_line(range.to())),
(Paste::After, true) => {
let idx = range.to().saturating_sub(1).max(range.from());
text.line_to_char((text.char_to_line(idx) + 1).min(text.len_lines()))
}
// paste insert
(Paste::Before, false) => range.from(),
// paste append