urfave / cli

A simple, fast, and fun package for building command line apps in Go
https://cli.urfave.org
MIT License
21.9k stars 1.69k forks source link

How to make builtin Usage value capitalized #1873

Closed taobig closed 3 months ago

taobig commented 3 months ago

The desc of --help/-h options(builtin) is not capitalized, how to make it capitalized?

OPTIONS:
   --help, -h    show help
dearchap commented 3 months ago

@taobig Have you tried setting the HelpFlag.Name a capital name ?

taobig commented 3 months ago

@dearchap Thanks.