brush_interactive/options.rs
1/// Options for creating an interactive shell.
2pub struct Options {
3 /// Lower-level options for creating the shell.
4 pub shell: brush_core::CreateOptions,
5 /// Whether to disable bracketed paste mode.
6 pub disable_bracketed_paste: bool,
7 /// Whether to disable color.
8 pub disable_color: bool,
9 /// Whether to disable syntax highlighting.
10 pub disable_highlighting: bool,
11}