fix zsh completion output (#1014)

pull/999/head^2
Thorsten Klein 3 years ago committed by GitHub
parent 3bb3d8f92a
commit 91448bdda5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      cmd/root.go
  2. 6
      docs/usage/commands/k3d_completion.md

@ -409,7 +409,7 @@ Zsh:
$ echo "autoload -U compinit; compinit" >> ~/.zshrc
# To load completions for each session, execute once:
$ k3d completion zsh > "${fpath[1]}/k3d"
$ k3d completion zsh > "${fpath[1]}/_k3d"
# You will need to start a new shell for this setup to take effect.

@ -24,7 +24,7 @@ Zsh:
$ echo "autoload -U compinit; compinit" >> ~/.zshrc
# To load completions for each session, execute once:
$ k3d completion zsh > "${fpath[1]}/k3d"
$ k3d completion zsh > "${fpath[1]}/_k3d"
# You will need to start a new shell for this setup to take effect.
@ -43,7 +43,6 @@ PowerShell:
PS> k3d completion powershell > k3d.ps1
# and source this file from your PowerShell profile.
```
k3d completion SHELL
```
@ -64,5 +63,4 @@ k3d completion SHELL
### SEE ALSO
* [k3d](k3d.md) - https://k3d.io/ -> Run k3s in Docker!
* [k3d](k3d.md) - <https://k3d.io/> -> Run k3s in Docker!

Loading…
Cancel
Save