Currently, when plac.call is passed version argument, then plac adds argument for version reporting which uses -v short option.
However, it is not uncommon for CLI design to have -V being used as short option for version display, and -v for output verbosity. wget and curl have CLIs like this.
I would welcome a change which introduces customized short option for version display. -v could remain a default choice if the user does not wish to override it.
Currently, when
plac.callis passedversionargument, thenplacadds argument for version reporting which uses-vshort option.However, it is not uncommon for CLI design to have
-Vbeing used as short option for version display, and-vfor output verbosity.wgetandcurlhave CLIs like this.I would welcome a change which introduces customized short option for version display.
-vcould remain a default choice if the user does not wish to override it.