Update dependencies

This commit is contained in:
Jeremy Soller 2024-10-10 11:22:41 -06:00
parent 5546ed9988
commit 9be376c8af
No known key found for this signature in database
GPG key ID: D02FD439211AF56F
3 changed files with 84 additions and 72 deletions

View file

@ -1756,7 +1756,11 @@ impl Application for App {
match self.config.find_regex(&self.find_search_value) {
Ok(regex) => {
//TODO: support captures
tab.replace(&regex, &self.find_replace_value, self.config.find_wrap_around);;
tab.replace(
&regex,
&self.find_replace_value,
self.config.find_wrap_around,
);
return self.update(Message::TabChanged(self.tab_model.active()));
}
Err(err) => {