mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-25 19:03:30 +04:00
fix split_on_newline (#9756)
This commit is contained in:
parent
f03b91d1b7
commit
1143f47954
@ -773,12 +773,12 @@ pub fn split_on_newline(text: RopeSlice, selection: &Selection) -> Selection {
|
|||||||
|
|
||||||
let mut start = sel_start;
|
let mut start = sel_start;
|
||||||
|
|
||||||
for mat in sel.slice(text).lines() {
|
for line in sel.slice(text).lines() {
|
||||||
let len = mat.len_chars();
|
let Some(line_ending) = get_line_ending(&line) else { break };
|
||||||
let line_end_len = get_line_ending(&mat).map(|le| le.len_chars()).unwrap_or(0);
|
let line_end = start + line.len_chars();
|
||||||
// TODO: retain range direction
|
// TODO: retain range direction
|
||||||
result.push(Range::new(start, start + len - line_end_len));
|
result.push(Range::new(start, line_end - line_ending.len_chars()));
|
||||||
start += len;
|
start = line_end;
|
||||||
}
|
}
|
||||||
|
|
||||||
if start < sel_end {
|
if start < sel_end {
|
||||||
|
Loading…
Reference in New Issue
Block a user