1
2
3
4
5
6
7
8
9


/// modes are used when the application is configured to
/// be "modal". If not, the only mode is the `Input` mode.
#[derive(Debug, Clone, Copy, PartialEq)]
pub enum Mode {
    Input,
    Command,
}