Skip to content

Commit

Permalink
fix split_on_newline (helix-editor#9756)
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalkuthe committed Feb 29, 2024
1 parent f03b91d commit 1143f47
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions helix-core/src/selection.rs
Original file line number Diff line number Diff line change
Expand Up @@ -773,12 +773,12 @@ pub fn split_on_newline(text: RopeSlice, selection: &Selection) -> Selection {

let mut start = sel_start;

for mat in sel.slice(text).lines() {
let len = mat.len_chars();
let line_end_len = get_line_ending(&mat).map(|le| le.len_chars()).unwrap_or(0);
for line in sel.slice(text).lines() {
let Some(line_ending) = get_line_ending(&line) else { break };
let line_end = start + line.len_chars();
// TODO: retain range direction
result.push(Range::new(start, start + len - line_end_len));
start += len;
result.push(Range::new(start, line_end - line_ending.len_chars()));
start = line_end;
}

if start < sel_end {
Expand Down

0 comments on commit 1143f47

Please sign in to comment.