Unnamed repository; edit this file 'description' to name the repository.
Don't panic on empty file/buffer (#108)
notoria 2021-06-05
parent c17dcb8 · commit 2bb71a8
-rw-r--r--helix-core/src/match_brackets.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/helix-core/src/match_brackets.rs b/helix-core/src/match_brackets.rs
index 38783c19..288b4586 100644
--- a/helix-core/src/match_brackets.rs
+++ b/helix-core/src/match_brackets.rs
@@ -25,6 +25,10 @@ pub fn find(syntax: &Syntax, doc: &Rope, pos: usize) -> Option<usize> {
}
let start_byte = node.start_byte();
+ let len = doc.len_bytes();
+ if start_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);