runa-tui 0.5.2

A fast, keyboard-focused terminal file browser (TUI). Highly configurable and lightweight. Previously known as runner-tui.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Miscellaneous utility functions for runa.
//!
//! This modules hodl the [helpers] submodule, which provides commonly used utilities such as:
//! - Color parsing
//! - Opening a file/path in the chosen editor
//! - Computing an unused path for core/workers
//! - Shortening the home directory path to "~"
//!
//! All of these utilities are used throughout runa for convenience and code clarity.

pub mod cli;
pub mod helpers;

pub use helpers::{
    DEFAULT_FIND_RESULTS, as_path_op, copy_recursive, get_unused_path, open_in_editor, parse_color,
    shorten_home_path,
};