Skip to content

Commit

Permalink
Make kill_to_line_end behave like emacs (#1235)
Browse files Browse the repository at this point in the history
  • Loading branch information
WindSoilder authored Dec 6, 2021
1 parent 35ac815 commit 93e276c
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions helix-term/src/commands.rs
Original file line number Diff line number Diff line change
Expand Up @@ -670,8 +670,15 @@ fn kill_to_line_end(cx: &mut Context) {

let selection = doc.selection(view.id).clone().transform(|range| {
let line = range.cursor_line(text);
let pos = line_end_char_index(&text, line);
range.put_cursor(text, pos, true)
let line_end_pos = line_end_char_index(&text, line);
let pos = range.cursor(text);

let mut new_range = range.put_cursor(text, line_end_pos, true);
// don't want to remove the line separator itself if the cursor doesn't reach the end of line.
if pos != line_end_pos {
new_range.head = line_end_pos;
}
new_range
});
delete_selection_insert_mode(doc, view, &selection);
}
Expand Down

0 comments on commit 93e276c

Please sign in to comment.