From 42a70b2f353e8ef58bda8a1de08144099e0722d6 Mon Sep 17 00:00:00 2001 From: oxcrow Date: Mon, 17 Mar 2025 04:42:56 +0530 Subject: [PATCH] fix: only search through the current document buffer This fixes a bug where results were being returned from all document buffers opened in the editor. Now only one document is searched. The current document. --- helix-term/src/commands.rs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs index 96a0ac7bb..6abe5c97f 100644 --- a/helix-term/src/commands.rs +++ b/helix-term/src/commands.rs @@ -2716,10 +2716,9 @@ fn local_search(cx: &mut Context) { .boxed(); } - let documents: Vec<_> = editor - .documents() - .map(|doc| (doc.path().cloned(), doc.text().to_owned())) - .collect(); + // Only read the current document (not other documents opened in the buffer) + let doc = doc!(editor); + let documents = vec![(doc.path().cloned(), doc.text().to_owned())]; let matcher = match RegexMatcherBuilder::new() .case_smart(config.smart_case)