yazi/yazi-tui/src/option.rs
2026-06-07 21:46:07 +08:00

9 lines
194 B
Rust

use yazi_config::YAZI;
pub(super) struct RatermOption {
pub mouse: bool,
}
impl Default for RatermOption {
fn default() -> Self { Self { mouse: !YAZI.mgr.mouse_events.get().is_empty() } }
}