alf_tui 0.3.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
//! # 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;
pub mod tui;

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