yazi_core/lib.rs
1#![allow(
2 clippy::if_same_then_else,
3 clippy::len_without_is_empty,
4 clippy::module_inception,
5 clippy::option_map_unit_fn,
6 clippy::unit_arg
7)]
8
9yazi_macro::mod_pub!(cmp confirm help input mgr notify pick spot tab tasks which);
10
11pub fn init() {
12 mgr::WATCHED.with(<_>::default);
13 mgr::LINKED.with(<_>::default);
14}