Remove unnecessary backslashes

Signed-off-by: Adam Jones <domdomegg+git@gmail.com>
This commit is contained in:
Adam Jones 2023-08-02 15:01:16 +01:00 committed by GitHub
parent 18e75daa53
commit 15f35d3548
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -40,12 +40,12 @@ podman completion -f /etc/bash_completion.d/podman bash
### ZSH
Shell completion needs to be already enabled in the environment. The following can be executed:\
Shell completion needs to be already enabled in the environment. The following can be executed:
```
echo "autoload -U compinit; compinit" >> ~/.zshrc
```
To make it available for all zsh sessions run:\
To make it available for all zsh sessions run:
```
podman completion -f "${fpath[1]}/_podman" zsh
```