feat(completion): complete task aliases in zsh (#2865)

This commit is contained in:
Valentin Maerten
2026-06-29 16:21:47 +02:00
committed by GitHub
parent 1c743de2b7
commit 7fa9d657cd
3 changed files with 28 additions and 2 deletions

View File

@@ -439,3 +439,10 @@ names without descriptions, add this to your `~/.zshrc` (after the completion is
```shell
zstyle ':completion:*:*:task:*' verbose false
```
By default, task aliases are also offered as completions. To complete only the
canonical task names, add the `show-aliases` zstyle:
```shell
zstyle ':completion:*:*:task:*' show-aliases false
```