This commit is contained in:
Zhaofeng Li 2023-11-05 01:05:28 -07:00
parent 15a95d6de5
commit 665603956a

View file

@ -316,16 +316,12 @@ pub async fn run() {
} }
fn print_completions(shell: Shell, cmd: &mut clap::Command) { fn print_completions(shell: Shell, cmd: &mut clap::Command) {
let bin_name = cmd.get_bin_name() let bin_name = cmd
.get_bin_name()
.expect("Must have a bin_name") .expect("Must have a bin_name")
.to_string(); .to_string();
clap_complete::generate( clap_complete::generate(shell, cmd, bin_name, &mut std::io::stdout());
shell,
cmd,
bin_name,
&mut std::io::stdout(),
);
} }
fn set_color_pref(when: &ColorWhen) { fn set_color_pref(when: &ColorWhen) {