We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The autocomplete, as per the documentation, add eval "$(task --completion zsh)" to .zsh, throws an error:
eval "$(task --completion zsh)"
_arguments:comparguments:327: can only be called from completion function
The text was updated successfully, but these errors were encountered:
Same problem
task --version
Task version: v3.39.0 (h1:Loe6ppP1x38Puv1M2wigp91bH/garCt0vLWkJsiTWNI=)
uname -a
Linux serenity 6.8.0-41-generic #41-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 2 20:41:06 UTC 2024 x86_64 x86_64 x86_64 GNU/Linux
zsh --version
zsh 5.9 (x86_64-ubuntu-linux-gnu)
Sorry, something went wrong.
The second installation option described in the docs works (with a few extra steps to be able to write it from non-root user):
sudo touch /usr/local/share/zsh/site-functions/_task sudo chmod 777 /usr/local/share/zsh/site-functions/_task task --completion zsh > /usr/local/share/zsh/site-functions/_task
It'll be fixed by : #1809
We will release a patch for somes fixes soon (including this one)
vmaerten
No branches or pull requests
The autocomplete, as per the documentation, add
eval "$(task --completion zsh)"
to .zsh, throws an error:The text was updated successfully, but these errors were encountered: