Fix open on multiline selection (#2161)

Select multiple line and open should be based on the whole selection
and not just the line of the cursor, which causes weird behavior like
opening in the middle of the selection which user might not expect.
imgbot
Ivan Tham 2 years ago committed by GitHub
parent 5d5b6bab9b
commit 2a853cd41d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -2292,8 +2292,10 @@ fn open(cx: &mut Context, open: Open) {
let mut offs = 0;
let mut transaction = Transaction::change_by_selection(contents, selection, |range| {
let cursor_line = range.cursor_line(text);
let cursor_line = text.char_to_line(match open {
Open::Below => graphemes::prev_grapheme_boundary(text, range.to()),
Open::Above => range.from(),
});
let new_line = match open {
// adjust position to the end of the line (next line - 1)
Open::Below => cursor_line + 1,

Loading…
Cancel
Save