diff options
author | Blaž Hrastnik | 2021-05-18 09:17:14 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-05-18 09:17:14 +0000 |
commit | f99a6839918d43773e061933cd240b877aec94c0 (patch) | |
tree | b48fd2df698409c1b684a9702189ad86f21d6ef3 /helix-term | |
parent | 9edae7e1f82c4f0e53b64d37e399b67488125008 (diff) |
Fix crash if appending at end of line on the last line of the file
Diffstat (limited to 'helix-term')
-rw-r--r-- | helix-term/src/commands.rs | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs index d2c9e4a7..39022a06 100644 --- a/helix-term/src/commands.rs +++ b/helix-term/src/commands.rs @@ -1145,15 +1145,14 @@ pub fn prepend_to_line(cx: &mut Context) { // A inserts at the end of each line with a selection pub fn append_to_line(cx: &mut Context) { - move_line_end(cx); - let (view, doc) = cx.current(); enter_insert_mode(doc); - // offset by another 1 char since move_line_end will position on the last char, we want to - // append past that let selection = doc.selection(view.id).transform(|range| { - let pos = range.head + 1; + let text = doc.text(); + let line = text.char_to_line(range.head); + // we can't use line_to_char(line + 1) - 2 because the last line might not contain \n + let pos = (text.line_to_char(line) + text.line(line).len_chars()).saturating_sub(1); Range::new(pos, pos) }); doc.set_selection(view.id, selection); |