diff --git a/commands/issue.go b/commands/issue.go index 47ee2e4aeefeabb21b7626c179bfa90c50d71be9..bed6ba64d7711659d93b571b9c5de58a16d17508 100644 --- a/commands/issue.go +++ b/commands/issue.go @@ -19,7 +19,7 @@ var ( Usage: ` issue [-a ] [-c ] [-@ ] [-s ] [-f ] [-M ] [-l ] [-d ] [-o [-^]] [-L ] issue create [-oc] [-m |-F ] [-a ] [-M ] [-l ] -issue labels [--no-color] +issue labels [--color] `, Long: `Manage GitHub issues for the current project. @@ -141,8 +141,8 @@ With no arguments, show a list of open issues. --include-pulls Include pull requests as well as issues. - --no-color - Disable colorized labels. + --color + Enable colored output for labels. `, } @@ -156,7 +156,7 @@ With no arguments, show a list of open issues. cmdLabel = &Command{ Key: "labels", Run: listLabels, - Usage: "issue labels [--no-color]", + Usage: "issue labels [--color]", Long: "List the labels available in this repository.", } @@ -185,7 +185,7 @@ With no arguments, show a list of open issues. flagIssueLimit int - flagLabelsNoColor bool + flagLabelsColorize bool ) func init() { @@ -211,7 +211,7 @@ func init() { cmdIssue.Flag.BoolVarP(&flagIssueIncludePulls, "include-pulls", "", false, "INCLUDE_PULLS") cmdIssue.Flag.IntVarP(&flagIssueLimit, "limit", "L", -1, "LIMIT") - cmdLabel.Flag.BoolVarP(&flagLabelsNoColor, "no-color", "", false, "COLORIZE_LABELS") + cmdLabel.Flag.BoolVarP(&flagLabelsColorize, "color", "", false, "COLORIZE") cmdIssue.Use(cmdCreateIssue) cmdIssue.Use(cmdLabel) @@ -462,7 +462,7 @@ func listLabels(cmd *Command, args *Args) { utils.Check(err) for _, label := range labels { - ui.Printf(formatLabel(label, !flagLabelsNoColor && ui.IsTerminal(os.Stdout))) + ui.Printf(formatLabel(label, flagLabelsColorize)) } }