Skip to main content

ytil_tui/
lib.rs

1//! Provide minimal TUI selection & prompt helpers built on [`skim`].
2//!
3//! Offer uniform, cancellable single / multi select prompts with fuzzy filtering and helpers
4//! to derive a value from CLI args or fallback to an interactive selector.
5
6#[cfg(not(target_arch = "wasm32"))]
7pub use interactive::*;
8
9#[cfg(not(target_arch = "wasm32"))]
10pub mod git_branch;
11#[cfg(not(target_arch = "wasm32"))]
12mod interactive;
13#[cfg(not(target_arch = "wasm32"))]
14mod preview;