feat: add padding to help output

This commit is contained in:
Daylin Morgan 2022-09-12 10:08:44 -05:00
parent 556b679784
commit 72ec8e1ba2
2 changed files with 3 additions and 3 deletions

View file

@ -33,7 +33,7 @@ goal_len = max(len(goal[0]) for goal in goals)
for goal, msg in goals: for goal, msg in goals:
print( print(
f"{ansi.$(GOAL_COLOR)}{goal:>{goal_len}}{ansi.end} $(HELP_SEP) {ansi.$(MSG_COLOR)}{msg}{ansi.end}" f" {ansi.$(GOAL_COLOR)}{goal:>{goal_len}}{ansi.end} $(HELP_SEP) {ansi.$(MSG_COLOR)}{msg}{ansi.end}"
) )
print(f"""$(EPILOG)""") print(f"""$(EPILOG)""")

View file

@ -1,7 +1,7 @@
# }> [github.com/daylinmorgan/task.mk] <{ # # }> [github.com/daylinmorgan/task.mk] <{ #
# Copyright (c) 2022 Daylin Morgan # Copyright (c) 2022 Daylin Morgan
# MIT License # MIT License
# version: 22.9.12 # version: v22.9.12-dev
# #
# task.mk should be included at the bottom of your Makefile. # task.mk should be included at the bottom of your Makefile.
# See below for the standard configuration options that should be set prior to including this file. # See below for the standard configuration options that should be set prior to including this file.
@ -127,7 +127,7 @@ goal_len = max(len(goal[0]) for goal in goals)
for goal, msg in goals: for goal, msg in goals:
print( print(
f"{ansi.$(GOAL_COLOR)}{goal:>{goal_len}}{ansi.end} $(HELP_SEP) {ansi.$(MSG_COLOR)}{msg}{ansi.end}" f" {ansi.$(GOAL_COLOR)}{goal:>{goal_len}}{ansi.end} $(HELP_SEP) {ansi.$(MSG_COLOR)}{msg}{ansi.end}"
) )
print(f"""$(EPILOG)""") print(f"""$(EPILOG)""")