mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-25 08:41:05 +00:00
18 lines
320 B
Rust
18 lines
320 B
Rust
use anyhow::Result;
|
|
use yazi_macro::succ;
|
|
use yazi_parser::VoidForm;
|
|
use yazi_shared::data::Data;
|
|
|
|
use crate::{Actor, Ctx};
|
|
|
|
pub struct Dismiss;
|
|
|
|
impl Actor for Dismiss {
|
|
type Form = VoidForm;
|
|
|
|
const NAME: &str = "dismiss";
|
|
|
|
fn act(cx: &mut Ctx, _: Self::Form) -> Result<Data> {
|
|
succ!(cx.which.dismiss(None));
|
|
}
|
|
}
|