1
0
mirror of https://github.com/go-task/task.git synced 2025-02-09 13:47:06 +02:00

--list: Print aliases on its own column

This commit is contained in:
Andrey Nering 2022-10-14 19:28:05 -03:00
parent 297f9eccea
commit dda2004753

View File

@ -44,10 +44,12 @@ func (e *Executor) printTasks(listAll bool) {
// Format in tab-separated columns with a tab stop of 8.
w := tabwriter.NewWriter(e.Stdout, 0, 8, 6, ' ', 0)
for _, task := range tasks {
taskNames := append([]string{task.Task}, task.Aliases...)
e.Logger.FOutf(w, logger.Yellow, "* ")
e.Logger.FOutf(w, logger.Green, strings.Join(taskNames, "|"))
e.Logger.FOutf(w, logger.Green, task.Task)
e.Logger.FOutf(w, logger.Default, ": \t%s", task.Desc)
if len(task.Aliases) > 0 {
e.Logger.FOutf(w, logger.Cyan, "\t(aliases: %s)", strings.Join(task.Aliases, ", "))
}
fmt.Fprint(w, "\n")
}
w.Flush()