alf_tui 0.5.0

A smolderingly-nimble Rust TUI to rediscover your custom shell.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! # alf - Alias & Function CLI Searching Tool
//!
//! A CLI tool to search & rediscover your custom shell aliases & functions.

pub mod cli;
pub mod config;
pub mod models;
pub mod parser;
pub mod search;
#[cfg(test)]
pub mod test_support;
pub mod tui;

// Re-export commonly used types
pub use config::Config;
pub use models::{AliasEntry, EntryType};