Allow moving to EOL byte, also fixes #15

pull/19/head
Blaž Hrastnik 3 years ago
parent 138787f76e
commit 17e9386388

@ -25,8 +25,7 @@ pub fn move_horizontally(
}
Direction::Forward => {
// Line end is pos at the start of next line - 1
// subtract another 1 because the line ends with \n
let end = text.line_to_char(line + 1).saturating_sub(2);
let end = text.line_to_char(line + 1).saturating_sub(1);
nth_next_grapheme_boundary(text, pos, count).min(end)
}
};

Loading…
Cancel
Save