broot 1.56.2

File browser and launcher
Documentation
1
2
3
4
5
6
7
8
9
10
use serde::Deserialize;

/// 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, Deserialize)]
#[serde(rename_all = "lowercase")]
pub enum Mode {
    Input,
    Command,
}