broot 1.56.0

File browser and launcher
Documentation
1
2
3
4
5
6
7
8
9
10
/// Describe whether a command should be executed once per selection or
/// once per command invocation.
#[derive(Debug, Clone, Copy, PartialEq)]
pub enum CommandCoarity {
    // one command per selection
    PerSelection,
    // One command integrating all selections, levaraging "repeated" or "repeating" patterns to
    // specify how selections are integrated in the command.
    Merged,
}