You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
The change in #3497, adding descriptions to task completion, introduced a new requirement for jq, making all completions fail for people who don't have jq or have a different name for it — regardless of whether or not you use tasks.
Additional context
I've replicated the string substitution and formatting using sed instead, which solved my issue:
mise tasks --no-header | sed -e 's/:/\\:/g' -e 's/^\(\S\+\)\s*\(.*\)$/\1:\2/'
I'm happy to update the usage files with this fix and open a PR, but I'd completely understand if you decide to stick with jq (it is pretty awesome and regexes kinda suck 😅 ).
The text was updated successfully, but these errors were encountered:
Describe the bug
The change in #3497, adding descriptions to task completion, introduced a new requirement for
jq
, making all completions fail for people who don't havejq
or have a different name for it — regardless of whether or not you use tasks.To Reproduce
Type mise[space][tab]
Expected behavior
Completions should be shown.
mise doctor
outputAdditional context
I've replicated the string substitution and formatting using
sed
instead, which solved my issue:I'm happy to update the
usage
files with this fix and open a PR, but I'd completely understand if you decide to stick withjq
(it is pretty awesome and regexes kinda suck 😅 ).The text was updated successfully, but these errors were encountered: