We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 347ecc0 commit 0692571Copy full SHA for 0692571
completion/bash/task.bash
@@ -6,7 +6,7 @@ _task_completion()
6
# Remove colon from word breaks
7
COMP_WORDBREAKS=${COMP_WORDBREAKS//:}
8
9
- scripts=$(task -l | sed '1d' | sed 's/^\* //' | awk '{ print $1 }');
+ scripts=$(task -l | sed '1d' | awk '{ print $2 }' | sed 's/:$//');
10
11
curr_arg="${COMP_WORDS[COMP_CWORD]:-"."}"
12
0 commit comments