aboutsummaryrefslogtreecommitdiffstats
path: root/commands/user_ls.go
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2022-05-01 12:54:40 +0200
committerGitHub <noreply@github.com>2022-05-01 12:54:40 +0200
commit547d626c2515b764f1fba1cd6b0dee1c69d8f36a (patch)
treecfcb5f96e49e8109ab69d2f993618625139da41c /commands/user_ls.go
parent8ee333582ff82d0df971309e94946f2f6e69475b (diff)
parent3d534a70e906997020a8d44ad0b70b4db3fd6d1b (diff)
downloadgit-bug-547d626c2515b764f1fba1cd6b0dee1c69d8f36a.tar.gz
Merge pull request #531 from krobelus/complete-bug-ids
Complete bug IDs where appropriate
Diffstat (limited to 'commands/user_ls.go')
-rw-r--r--commands/user_ls.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/commands/user_ls.go b/commands/user_ls.go
index 98800b87..341f0dc1 100644
--- a/commands/user_ls.go
+++ b/commands/user_ls.go
@@ -32,6 +32,7 @@ func newUserLsCommand() *cobra.Command {
flags.StringVarP(&options.format, "format", "f", "default",
"Select the output formatting style. Valid values are [default,json]")
+ cmd.RegisterFlagCompletionFunc("format", completeFrom([]string{"default", "json"}))
return cmd
}