rmux 0.1.1

A local terminal multiplexer with a tmux-style CLI, daemon runtime, Rust SDK, and ratatui integration.
1
2
3
4
5
6
7
8
9
use clap::Args;

#[derive(Debug, Clone, Args)]
pub(crate) struct ListCommandsArgs {
    #[arg(short = 'F', allow_hyphen_values = true)]
    pub(crate) format: Option<String>,
    #[arg(allow_hyphen_values = true)]
    pub(crate) command: Option<String>,
}