yazi/yazi-parser/src/mgr/find_arrow.rs
2025-07-18 14:31:16 +08:00

9 lines
184 B
Rust

use yazi_shared::event::CmdCow;
pub struct FindArrowOpt {
pub prev: bool,
}
impl From<CmdCow> for FindArrowOpt {
fn from(c: CmdCow) -> Self { Self { prev: c.bool("previous") } }
}