Skip to content

Commit 669b007

Browse files
committed
cli: fix cli completion setup for zsh
Signed-off-by: David Karlsson <[email protected]>
1 parent c9bb762 commit 669b007

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

content/manuals/engine/cli/completion.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,8 @@ $ docker completion zsh > ~/.docker/completions/_docker
8989
```
9090

9191
```console
92-
$ cat <<EOT >> ~/.zshrc
93-
fpath=(~/.docker/completions \\$fpath)
92+
$ cat <<"EOT" >> ~/.zshrc
93+
FPATH="$HOME/.docker/completions:$FPATH"
9494
autoload -Uz compinit
9595
compinit
9696
EOT

0 commit comments

Comments
 (0)