Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(cli): add shell completion script generation subcommand #243

Merged
merged 5 commits into from
Mar 4, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ bytes = "1.8.0"
cbc = "0.1.2"
chrono = "0.4.38"
clap = "4.5.21"
clap_complete = "4.5.45"
colored = "3.0.0"
colored_json = "4"
cookie = "0.18.1"
Expand Down
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,23 @@ You can view and edit it at: https://edgee.cloud/~/registry/{organization}/{comp

Learn more about [running the Edgee proxy locally](./README-proxy.md).

## `edgee generate-shell-completion`

This command allows you to generate a script for your shell adding auto-completion for the `edgee` command.

```shell
$ edgee generate-shell-completion [SHELL]
# supported value: bash, elvish, fish, powershell, zsh
```

You can use it by adding the following to your shell init file:

```shell
# ~/.bashrc | ~/.zshrc
$ eval $(edgee generate-shell-completion)
# ~/.config/fish/completions/edgee.fish
$ edgee generate-shell-completion | source
```

## Contributing
If you're interested in contributing to Edgee, read our [contribution guidelines](./CONTRIBUTING.md)
Expand Down
1 change: 1 addition & 0 deletions crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ edition.workspace = true
[dependencies]
anyhow.workspace = true
clap = { workspace = true, features = ["derive", "env"] }
clap_complete.workspace = true
colored.workspace = true
colored_json.workspace = true
http.workspace = true
Expand Down
19 changes: 19 additions & 0 deletions crates/cli/src/commands/completion.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
use clap_complete::Shell;

setup_command! {
#[arg(value_enum)]
shell: Option<Shell>,
}

pub async fn run(opts: Options) -> anyhow::Result<()> {
let Some(shell) = opts.shell.or_else(Shell::from_env) else {
anyhow::bail!("No valid $SHELL found, you need to specify it in the command");
};

let mut cli = <crate::Options as clap::CommandFactory>::command();
let name = cli.get_name().to_owned();

clap_complete::generate(shell, &mut cli, name, &mut std::io::stdout());

Ok(())
}
2 changes: 2 additions & 0 deletions crates/cli/src/commands/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,6 @@ setup_commands! {
[cfg(not(feature = "no-self-update"))]
/// Update the Edgee executable
SelfUpdate(update),
/// Print auto-completion script for your shell init file
GenerateShellCompletion(completion),
}
Loading