cli/completion: Add shell completion for cli
1 passed
3 failed
(4 total)
View logs
modified Cargo.lock
@@ -478,6 +478,15 @@ dependencies = [
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
@@ -2819,6 +2828,7 @@ dependencies = [
|
|
|
|
|
|
| + | |
|
|
|
|
|
modified crates/radicle-cli/Cargo.toml
@@ -17,6 +17,7 @@ path = "src/main.rs"
|
|
|
|
|
|
| + | |
|
|
|
|
|
modified crates/radicle-cli/src/commands.rs
@@ -4,6 +4,7 @@ pub mod checkout;
|
|
|
|
|
|
| + | |
|
|
|
|
|
added crates/radicle-cli/src/commands/completion.rs
@@ -0,0 +1,19 @@
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
modified crates/radicle-cli/src/commands/help.rs
@@ -54,6 +54,10 @@ const COMMANDS: &[CommandItem] = &[
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
modified crates/radicle-cli/src/main.rs
@@ -5,7 +5,7 @@ use std::{io::ErrorKind, iter, process};
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -52,6 +52,7 @@ enum Commands {
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -231,6 +232,11 @@ pub(crate) fn run_other(exe: &str, args: &[OsString]) -> Result<(), Option<anyho
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|