mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-25 08:41:05 +00:00
15 lines
270 B
Rust
15 lines
270 B
Rust
use yazi_shared::event::CmdCow;
|
|
|
|
use crate::tab::Tab;
|
|
|
|
struct Opt;
|
|
|
|
impl From<CmdCow> for Opt {
|
|
fn from(_: CmdCow) -> Self { Self }
|
|
}
|
|
|
|
impl Tab {
|
|
// TODO: remove this in Yazi 0.4.1
|
|
#[yazi_codegen::command]
|
|
pub fn select_all(&mut self, _: Opt) { self.select(()); }
|
|
}
|