We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
uvx
1 parent 1e356e2 commit 6ee1140Copy full SHA for 6ee1140
1 file changed
crates/uv-cli/src/lib.rs
@@ -4240,4 +4240,12 @@ pub fn generate_shell_completion(
4240
buffer: &mut dyn std::io::Write,
4241
) {
4242
shell.generate(&mut Cli::command(), buffer);
4243
+ // `uvx` completion
4244
+ #[allow(clippy::single_match)] // Hopefully, this will be implemented for other shells as well
4245
+ match shell {
4246
+ clap_complete_command::Shell::Fish => {
4247
+ writeln!(buffer, r#"complete -c uvx --wraps "uv tool run""#).ok();
4248
+ }
4249
+ _ => {}
4250
+ };
4251
}
0 commit comments