feat(completion): complete task aliases in zsh

This commit is contained in:
Valentin Maerten
2026-05-31 13:21:47 +02:00
parent dd810d42e1
commit 3ae4f3276d
2 changed files with 26 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
```