mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-12 23:25:18 +03:00
Allow moving to EOL byte, also fixes #15
This commit is contained in:
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…
Reference in New Issue
Block a user