tui-canvas 0.8.10

Form/textarea/input for TUI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Vim/Helix-style command line convenience exports.

pub mod input;
pub mod registry;
pub mod state;

#[cfg(feature = "gui")]
pub mod widget;

pub use registry::{
    CommandLineCommand, CommandLineCommandInvocation, CommandLineDispatchError,
    CommandLineParseError, CommandLineParsedCommand, CommandLineRegistrationError,
    CommandLineRegistry, parse_command_args, parse_command_line,
};
pub use state::{CommandLineEventOutcome, CommandLineMode, CommandLineState, CommandLineSubmit};

#[cfg(feature = "gui")]
pub use widget::{CommandLine, CommandLinePlacement};