Unnamed repository; edit this file 'description' to name the repository.
Split on matches off by one, breaks tests again.
Blaž Hrastnik 2020-10-13
parent fd311fb · commit 8c7bc71
-rw-r--r--helix-core/src/selection.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-core/src/selection.rs b/helix-core/src/selection.rs
index 41dffa03..2251c77f 100644
--- a/helix-core/src/selection.rs
+++ b/helix-core/src/selection.rs
@@ -276,7 +276,7 @@ pub fn split_on_matches(
// TODO: retain range direction
let end = text.byte_to_char(start_byte + mat.start());
- result.push(Range::new(start, end));
+ result.push(Range::new(start, end - 1));
start = text.byte_to_char(start_byte + mat.end());
}