broot 1.56.0

File browser and launcher
Documentation
1
2
3
4
5
6
7
8
use crate::command::Sequence;

/// A verb execution definition based on a sequence
/// of commands
#[derive(Debug, Clone)]
pub struct SequenceExecution {
    pub sequence: Sequence,
}