mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-25 08:41:05 +00:00
9 lines
184 B
Rust
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") } }
|
|
}
|