mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-25 08:41:05 +00:00
fix: find_do command missing
This commit is contained in:
parent
a0da57a293
commit
5336f005ce
2 changed files with 2 additions and 1 deletions
|
|
@ -66,7 +66,7 @@ impl Manager {
|
||||||
false
|
false
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn bulk_rename(&self) -> bool {
|
fn bulk_rename(&self) -> bool {
|
||||||
let old: Vec<_> = self.selected().into_iter().map(|f| &f.url).collect();
|
let old: Vec<_> = self.selected().into_iter().map(|f| &f.url).collect();
|
||||||
|
|
||||||
let root = max_common_root(&old);
|
let root = max_common_root(&old);
|
||||||
|
|
|
||||||
|
|
@ -124,6 +124,7 @@ impl<'a> Executor<'a> {
|
||||||
|
|
||||||
// Find
|
// Find
|
||||||
on!(ACTIVE, find);
|
on!(ACTIVE, find);
|
||||||
|
on!(ACTIVE, find_do);
|
||||||
on!(ACTIVE, find_arrow);
|
on!(ACTIVE, find_arrow);
|
||||||
|
|
||||||
// Sorting
|
// Sorting
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue