mise 2026.9.7

Dev tools, env vars, and tasks in one CLI
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/// Control whether long terminal output is shortened to fit the available
/// width.
#[derive(Debug, usage_rs::Args)]
pub(crate) struct TruncateOptions {
    /// Truncate long terminal output to fit the available width
    #[usage(
        long,
        negate = "no-truncate",
        default = "true",
        setting = "truncate",
        verbatim_doc_comment
    )]
    pub(crate) truncate: bool,
}