mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 10:57:48 +03:00
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:
parent
8fba25bb86
commit
42a70b2f35
1 changed files with 3 additions and 4 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue