fm/lib.rs
1//! fm: a TUI file manager inspired by ranger & dired.
2//!
3//! fm comes with a lot of features.
4//! It aims to be easy to use and configure. All actions are accessible from the help (default bind: Shift+H).
5pub mod app;
6pub mod common;
7pub mod config;
8pub mod event;
9pub mod io;
10pub mod modes;