fix: A (append to line) was inserting before last char.
This commit is contained in:
parent
1b5316ea74
commit
e166da2ab0
1 changed files with 10 additions and 3 deletions
|
@ -922,18 +922,25 @@ fn selection_lines(doc: &Rope, selection: &Selection) -> Vec<usize> {
|
|||
|
||||
// I inserts at the start of each line with a selection
|
||||
pub fn prepend_to_line(cx: &mut Context) {
|
||||
move_line_start(cx);
|
||||
let doc = cx.doc();
|
||||
enter_insert_mode(doc);
|
||||
|
||||
move_line_start(cx);
|
||||
}
|
||||
|
||||
// A inserts at the end of each line with a selection
|
||||
pub fn append_to_line(cx: &mut Context) {
|
||||
move_line_end(cx);
|
||||
|
||||
let doc = cx.doc();
|
||||
enter_insert_mode(doc);
|
||||
|
||||
move_line_end(cx);
|
||||
// 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().transform(|range| {
|
||||
let pos = range.head + 1;
|
||||
Range::new(pos, pos)
|
||||
});
|
||||
doc.set_selection(selection);
|
||||
}
|
||||
|
||||
// o inserts a new line after each line with a selection
|
||||
|
|
Loading…
Reference in a new issue