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
Copy file name to clipboardExpand all lines: completion/fish/task.fish
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
function __task_get_tasks --description"Prints all available tasks with their description"
2
-
task -l|sed'1d'|awk'{ $1=""; print $0 }'|sed's/: /\t/'| string trim
2
+
task -l|sed'1d'|awk'{ $1=""; print $0 }'|tr': ', '\t'| string trim
3
3
end
4
4
5
5
complete-c task -d'Runs the specified task(s). Falls back to the "default" task if no task name was specified, or lists all tasks if an unknown task name was
0 commit comments