From d3f2fb0d1808ce512092707978390a42b6e2d0fd Mon Sep 17 00:00:00 2001 From: Steve Moyer Date: Tue, 16 Aug 2022 08:01:17 -0400 Subject: docs(847): add compact to docs and bash for ls command's format flag --- commands/ls.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'commands') diff --git a/commands/ls.go b/commands/ls.go index da5ea8ce..61724f2a 100644 --- a/commands/ls.go +++ b/commands/ls.go @@ -91,9 +91,9 @@ git bug ls status:open --by creation "foo bar" baz "Select the sorting direction. Valid values are [asc,desc]") cmd.RegisterFlagCompletionFunc("direction", completeFrom([]string{"asc", "desc"})) flags.StringVarP(&options.outputFormat, "format", "f", "default", - "Select the output formatting style. Valid values are [default,plain,json,org-mode]") + "Select the output formatting style. Valid values are [default,plain,compact,json,org-mode]") cmd.RegisterFlagCompletionFunc("format", - completeFrom([]string{"default", "plain", "json", "org-mode"})) + completeFrom([]string{"default", "plain", "compact", "json", "org-mode"})) return cmd } -- cgit