feat(completion): add zstyle verbose option for zsh completion (#2571)

This commit is contained in:
Valentin Maerten
2025-12-18 08:35:56 +01:00
committed by GitHub
parent 4ec6c453bd
commit b710259bfa
3 changed files with 30 additions and 3 deletions

View File

@@ -384,3 +384,13 @@ task --completion fish > ~/.config/fish/completions/task.fish
```
:::
### Zsh customization
The Zsh completion supports the standard `verbose` zstyle to control whether task
descriptions are shown. By default, descriptions are displayed. To show only task
names without descriptions, add this to your `~/.zshrc` (after the completion is loaded):
```shell
zstyle ':completion:*:*:task:*' verbose false
```