From 5dba649d81d706125e16fa695747ed936e7b105a Mon Sep 17 00:00:00 2001 From: Pascal Kuthe Date: Tue, 6 Jun 2023 01:37:36 +0200 Subject: [PATCH] Avoid false positives in non-fuzzy bracket match --- helix-core/src/match_brackets.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/helix-core/src/match_brackets.rs b/helix-core/src/match_brackets.rs index 01deb82cb..434df9040 100644 --- a/helix-core/src/match_brackets.rs +++ b/helix-core/src/match_brackets.rs @@ -64,9 +64,12 @@ fn find_pair(syntax: &Syntax, doc: &Rope, pos: usize, traverse_parents: bool) -> if end_byte == pos { return Some(start_char); } + // We return the end char if the cursor is either on the start char // or at some arbitrary position between start and end char. - return Some(end_char); + if traverse_parents || start_byte == pos { + return Some(end_char); + } } } // this node itselt wasn't a pair but maybe its siblings are