Skip to content

Commit

Permalink
Improve help for shell completion (#4185)
Browse files Browse the repository at this point in the history
  • Loading branch information
nono committed Oct 23, 2023
2 parents 6628c62 + 35e3e17 commit 1cf5d2a
Show file tree
Hide file tree
Showing 2 changed files with 62 additions and 9 deletions.
35 changes: 32 additions & 3 deletions cmd/completion.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,17 @@ var completionCmd = &cobra.Command{
Long: `
Output shell completion code for the specified shell (bash, zsh, or fish). The
shell code must be evalutated to provide interactive completion of cozy-stack
commands. This can be done by sourcing it from the .bash_profile.
commands.
Bash:
$ source <(cozy-stack completion bash)
# To load completions for each session, execute once:
# Linux:
$ cozy-stack completion bash > /etc/bash_completion.d/cozy-stack
# macOS:
$ cozy-stack completion bash > $(brew --prefix)/etc/bash_completion.d/cozy-stack
Note: this requires the bash-completion framework, which is not installed by
default on Mac. This can be installed by using homebrew:
Expand All @@ -23,8 +33,27 @@ default on Mac. This can be installed by using homebrew:
Once installed, bash_completion must be evaluated. This can be done by adding the
following line to the .bash_profile
$ source $(brew --prefix)/etc/bash_completion`,
Example: `# cozy-stack completion bash > /etc/bash_completion.d/cozy-stack`,
$ source $(brew --prefix)/etc/bash_completion
Zsh:
# If shell completion is not already enabled in your environment,
# you will need to enable it. You can execute the following once:
$ echo "autoload -U compinit; compinit" >> ~/.zshrc
# To load completions for each session, execute once:
$ cozy-stack completion zsh > "${fpath[1]}/_cozy-stack"
# You will need to start a new shell for this setup to take effect.
fish:
$ cozy-stack completion fish | source
# To load completions for each session, execute once:
$ cozy-stack completion fish > /etc/fish/completions/cozy-stack.fish
`,
ValidArgs: []string{"bash", "zsh", "fish"},
RunE: func(cmd *cobra.Command, args []string) error {
if len(args) != 1 {
Expand Down
36 changes: 30 additions & 6 deletions docs/cli/cozy-stack_completion.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,17 @@ Output shell completion code for the specified shell

Output shell completion code for the specified shell (bash, zsh, or fish). The
shell code must be evalutated to provide interactive completion of cozy-stack
commands. This can be done by sourcing it from the .bash_profile.
commands.

Bash:

$ source <(cozy-stack completion bash)

# To load completions for each session, execute once:
# Linux:
$ cozy-stack completion bash > /etc/bash_completion.d/cozy-stack
# macOS:
$ cozy-stack completion bash > $(brew --prefix)/etc/bash_completion.d/cozy-stack

Note: this requires the bash-completion framework, which is not installed by
default on Mac. This can be installed by using homebrew:
Expand All @@ -19,14 +29,28 @@ following line to the .bash_profile

$ source $(brew --prefix)/etc/bash_completion

```
cozy-stack completion <shell> [flags]
```
Zsh:

# If shell completion is not already enabled in your environment,
# you will need to enable it. You can execute the following once:

$ echo "autoload -U compinit; compinit" >> ~/.zshrc

# To load completions for each session, execute once:
$ cozy-stack completion zsh > "${fpath[1]}/_cozy-stack"

# You will need to start a new shell for this setup to take effect.

fish:

$ cozy-stack completion fish | source

# To load completions for each session, execute once:
$ cozy-stack completion fish > /etc/fish/completions/cozy-stack.fish

### Examples

```
# cozy-stack completion bash > /etc/bash_completion.d/cozy-stack
cozy-stack completion <shell> [flags]
```

### Options
Expand Down

0 comments on commit 1cf5d2a

Please sign in to comment.