aboutsummaryrefslogtreecommitdiff
path: root/helix-core
diff options
context:
space:
mode:
authornotoria2021-06-03 08:35:17 +0000
committernotoria2021-06-03 08:35:17 +0000
commit4fe654cf9a4910f67da6696773f3edc41f25755d (patch)
tree27defbca37473243635441c27a3cdce20d9ee687 /helix-core
parent7e8603247d5b7ba90bb095afd36fd2058cc53ec6 (diff)
Fix match_brackets::find
Diffstat (limited to 'helix-core')
-rw-r--r--helix-core/src/match_brackets.rs18
1 files changed, 12 insertions, 6 deletions
diff --git a/helix-core/src/match_brackets.rs b/helix-core/src/match_brackets.rs
index fd161776..2d2eb4a9 100644
--- a/helix-core/src/match_brackets.rs
+++ b/helix-core/src/match_brackets.rs
@@ -1,6 +1,6 @@
use crate::{Range, Rope, Selection, Syntax};
-// const PAIRS: &[(char, char)] = &[('(', ')'), ('{', '}'), ('[', ']')];
+const PAIRS: &[(char, char)] = &[('(', ')'), ('{', '}'), ('[', ']'), ('<', '>')];
// limit matching pairs to only ( ) { } [ ] < >
#[must_use]
@@ -20,15 +20,21 @@ pub fn find(syntax: &Syntax, doc: &Rope, pos: usize) -> Option<usize> {
None => return None,
};
+ if node.is_error() {
+ return None;
+ }
+
let start_byte = node.start_byte();
let end_byte = node.end_byte() - 1; // it's end exclusive
- if start_byte == byte_pos {
- return Some(doc.byte_to_char(end_byte));
- }
+ if PAIRS.contains(&(doc.char(start_byte), doc.char(end_byte))) {
+ if start_byte == byte_pos {
+ return Some(doc.byte_to_char(end_byte));
+ }
- if end_byte == byte_pos {
- return Some(doc.byte_to_char(start_byte));
+ if end_byte == byte_pos {
+ return Some(doc.byte_to_char(start_byte));
+ }
}
None