Deduplicate regexes in search_selection command (#3941)
This commit is contained in:
parent
e621848d07
commit
eb6fd283dc
1 changed files with 2 additions and 0 deletions
|
@ -1760,6 +1760,8 @@ fn search_selection(cx: &mut Context) {
|
|||
.selection(view.id)
|
||||
.iter()
|
||||
.map(|selection| regex::escape(&selection.fragment(contents)))
|
||||
.collect::<HashSet<_>>() // Collect into hashset to deduplicate identical regexes
|
||||
.into_iter()
|
||||
.collect::<Vec<_>>()
|
||||
.join("|");
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue