We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ac2034 commit fd3d86bCopy full SHA for fd3d86b
1 file changed
build.rs
@@ -14,5 +14,8 @@ fn main() {
14
println!("{:?}", outdir);
15
16
let mut app = build_cli();
17
- app.gen_completions("tmc", Shell::Zsh, outdir);
+ app.gen_completions("tmc", Shell::Bash, &outdir);
18
+ app.gen_completions("tmc", Shell::Fish, &outdir);
19
+ app.gen_completions("tmc", Shell::PowerShell, &outdir);
20
+ app.gen_completions("tmc", Shell::Zsh, &outdir);
21
}
0 commit comments