diff --git a/gum.go b/gum.go index a2f5e58..f7c2823 100644 --- a/gum.go +++ b/gum.go @@ -18,13 +18,13 @@ import ( // Gum is the command-line interface for Gum. type Gum struct { // Version is a flag that can be used to display the version number. - Version kong.VersionFlag `short:"v" help:"Print the version number" env:"-"` + Version kong.VersionFlag `short:"v" help:"Print the version number"` // Completion generates Gum shell completion scripts. - Completion completion.Completion `cmd:"" hidden:"" help:"Request shell completion" env:"-"` + Completion completion.Completion `cmd:"" hidden:"" help:"Request shell completion"` // Man is a hidden command that generates Gum man pages. - Man man.Man `cmd:"" hidden:"" help:"Generate man pages" env:"-"` + Man man.Man `cmd:"" hidden:"" help:"Generate man pages"` // Choose provides an interface to choose one option from a given list of // options. The options can be provided as (new-line separated) stdin or a