fm-tui 0.2.3

FM : a file manager inspired by ranger and dired{n}{n}Config files ~/.config/fm/{n}Documentation https://github.com/qkzk/fm{n}
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Utiliy functions & constants.
//!
//! - `utils` holds a few functions which are used at various places, mostly to convert element from a type to another or to refresh states.
//! - `constant_strings_paths` holds every static string used to define paths and static messages (helper menu etc.)
//! - [`format::PathShortener`] is a trait allowing to shorten a path and display it in any width. Inspired by ranger.
//! - `random` holds everything about "pseudo" random generators. We don't really need randomness to create temporary files and a gradient of colors. A quick pseudo random does the trick.

mod constant_strings_paths;
mod format;
mod random;
mod utils;

pub use constant_strings_paths::*;
pub use format::*;
pub use random::{hash_path, random_alpha_chars};
pub use utils::*;