mirror of
https://github.com/ilyakooo0/helix.git
synced 2024-11-09 01:31:07 +03:00
Fix ocassional panic when matching brackets.
This commit is contained in:
parent
fd684ef693
commit
ffb8057a7f
@ -24,12 +24,13 @@ pub fn find(syntax: &Syntax, doc: &Rope, pos: usize) -> Option<usize> {
|
||||
return None;
|
||||
}
|
||||
|
||||
let start_byte = node.start_byte();
|
||||
let len = doc.len_bytes();
|
||||
if start_byte >= len {
|
||||
let start_byte = node.start_byte();
|
||||
let end_byte = node.end_byte() - 1; // it's end exclusive
|
||||
if start_byte >= len || end_byte >= len {
|
||||
return None;
|
||||
}
|
||||
let end_byte = node.end_byte() - 1; // it's end exclusive
|
||||
|
||||
let start_char = doc.byte_to_char(start_byte);
|
||||
let end_char = doc.byte_to_char(end_byte);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user