Skip to content

Commit

Permalink
fix Install Shell Completion commands
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Batista <dgomesb@gmail.com>
  • Loading branch information
dgomesb committed Aug 8, 2024
1 parent 958b232 commit a94f150
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ The docker container is not meant as a way to run tenv for CI pipelines, for loc

```console
tenv completion zsh > ~/.tenv.completion.zsh
echo "source '~/.tenv.completion.zsh'" >> ~/.zshrc
echo "source \$HOME/.tenv.completion.zsh" >> ~/.zshrc
```
</details>

Expand All @@ -273,15 +273,15 @@ tenv completion powershell | Out-String | Invoke-Expression

```console
tenv completion bash > ~/.tenv.completion.bash
echo "source '~/.tenv.completion.bash'" >> ~/.zshrc
echo "source \$HOME/.tenv.completion.bash" >> ~/.bashrc
```
</details>

<details><summary><b>fish</b></summary><br>

```console
tenv completion fish > ~/.tenv.completion.fish
echo "source '~/.tenv.completion.fish'" >> ~/.zshrc
echo "source \$HOME/.tenv.completion.fish" >> ~/.config/fish/config.fish
```
</details>

Expand Down

0 comments on commit a94f150

Please sign in to comment.