mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-25 08:41:05 +00:00
13 lines
228 B
Rust
13 lines
228 B
Rust
use yazi_shared::event::Exec;
|
|
|
|
use crate::input::Input;
|
|
|
|
pub struct Opt;
|
|
|
|
impl From<&Exec> for Opt {
|
|
fn from(_: &Exec) -> Self { Self }
|
|
}
|
|
|
|
impl Input {
|
|
pub fn redo(&mut self, _: impl Into<Opt>) -> bool { self.snaps.redo() }
|
|
}
|