Please complete the following tasks
Rust Version
rustc 1.78.0 (9b00956e5 2024-04-29)
Clap Version
4.3.5
Minimal reproducible code
use std::{ffi::OsString, io, path::PathBuf};
use clap::{CommandFactory, Parser};
use clap_complete::generate;
use clap_complete_nushell::Nushell;
#[derive(Parser, Debug)]
pub struct RuffArgs {
/// List of files or directories to limit the operation to
paths: Vec<PathBuf>,
/// Perform the operation on all packages
#[arg(short, long)]
all: bool,
/// Perform the operation on a specific package
#[arg(short, long)]
package: Vec<String>,
/// Use this pyproject.toml file
#[arg(long, value_name = "PYPROJECT_TOML")]
pyproject: Option<PathBuf>,
/// Enables verbose diagnostics.
#[arg(short, long)]
verbose: bool,
/// Turns off all output.
#[arg(short, long, conflicts_with = "verbose")]
quiet: bool,
/// Extra arguments to ruff
#[arg(last = true)]
extra_args: Vec<OsString>,
}
fn main() {
let mut cmd = RuffArgs::command();
generate(Nushell, &mut cmd,"myapp", &mut io::stdout());
}
Steps to reproduce the bug with the above code
- cargo run
- copy the code to nushell env.nu
- reload nushell
- see error
Actual Behaviour
Error: nu::parser::multiple_rest_params
× Multiple rest params.
╭─[D:\dev_env\conf\nushell\scripts\rye.nu:85:28]
84 │ # Run the code formatter on the project
85 │ ╭─▶ export extern "rye fmt" [
86 │ │ ...paths: string # List of files or directories to limit the operation to
87 │ │ --all(-a) # Perform the operation on all packages
88 │ │ --package(-p): string # Perform the operation on a specific package
89 │ │ --pyproject: string # Use this pyproject.toml file
90 │ │ --verbose(-v) # Enables verbose diagnostics
91 │ │ --quiet(-q) # Turns off all output
92 │ │ ...extra_args: string # Extra arguments to ruff
93 │ │ --check # Run format in check mode
94 │ │ --help(-h) # Print help (see more with '--help')
95 │ ├─▶ ]
· ╰──── multiple rest params
96 │
╰────
Expected Behaviour
Completion should not cause error in nushell.
Additional Context
No response
Debug Output
No response
Please complete the following tasks
Rust Version
rustc 1.78.0 (9b00956e5 2024-04-29)
Clap Version
4.3.5
Minimal reproducible code
Steps to reproduce the bug with the above code
Actual Behaviour
Expected Behaviour
Completion should not cause error in nushell.
Additional Context
No response
Debug Output
No response