From 75146a35b290e61e45e3e1e0eae02d7e8d05bad0 Mon Sep 17 00:00:00 2001 From: Fabian Siegel Date: Mon, 13 Jan 2020 19:06:56 +0100 Subject: [PATCH] glamour can also be disabled without "show" --- cmd/issue.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/issue.go b/cmd/issue.go index 115d3dda..8f21138f 100644 --- a/cmd/issue.go +++ b/cmd/issue.go @@ -37,5 +37,6 @@ func init() { issueCmd.Flags().BoolP("list", "l", false, "List issues on a remote") issueCmd.Flags().BoolP("browse", "b", false, "View issue in a browser") issueCmd.Flags().StringP("close", "d", "", "Close issue on remote") + issueCmd.Flags().BoolP("no-glamour", "G", false, "Don't use glamour to print the issue description") RootCmd.AddCommand(issueCmd) }