summaryrefslogtreecommitdiffstats
path: root/src/app/mode.rs
blob: 8bcc132dfc5c9f026ecc3bdadb7b2f9013555c00 (plain)
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,
}