1
0
Fork 0
mirror of https://github.com/helix-editor/helix synced 2024-05-21 04:06:06 +02:00

Fix test, break split + append

This commit is contained in:
Blaž Hrastnik 2020-09-29 18:13:19 +09:00
parent 3feb00283d
commit 592c5b0af2

View File

@ -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 - 1));
result.push(Range::new(start, end));
start = text.byte_to_char(start_byte + mat.end());
}