Add Context.GlobalFlagNames()

main
Artem Nezvigin 10 years ago
parent f7ebb761e8
commit 6db418e461

@ -128,6 +128,18 @@ func (c *Context) FlagNames() (names []string) {
return
}
// Returns a slice of global flag names used by the app.
func (c *Context) GlobalFlagNames() (names []string) {
for _, flag := range c.App.Flags {
name := strings.Split(flag.getName(), ",")[0]
if name == "help" || name == "version" {
continue
}
names = append(names, name)
}
return
}
type Args []string
// Returns the command line arguments associated with the context.

Loading…
Cancel
Save