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.
This commit is contained in:
oxcrow 2025-03-17 04:42:56 +05:30
parent 8fba25bb86
commit 42a70b2f35
No known key found for this signature in database
GPG key ID: 2057528A3E83A137

View file

@ -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)