koda-cli 0.2.11

A high-performance AI coding agent for macOS and Linux
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! TUI widgets — dropdown menus, status bar, and interactive selectors.
//!
//! Each widget module owns its data model (`*Item` structs) and rendering
//! logic (`build_*_lines` functions). The generic [`dropdown::DropdownState`]
//! provides shared navigation (up/down/scroll/filter) so menus stay DRY.

pub mod dropdown;
pub mod file_menu;
pub mod model_menu;
pub mod provider_menu;
pub mod session_menu;
pub mod slash_menu;
pub mod status_bar;