You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems that there is no way to disable this portion of the automatically generated help from showing up. Here's an example from something I'm writing:
@add_arg_table! argtable begin"--number-of-outputs", "-n"
help ="The number of different outputs to be written."
arg_type = Int
default =1
Results in this help string:
-n, --number-of-outputs NUMBER-OF-OUTPUTS
The number of different outputs to be written.
(type: Int64, default: 1)
I'd like to include/format that information myself, so if there could be some sort of flag in ArgParseSettings() to disable that portion, that would be great.
The text was updated successfully, but these errors were encountered:
It seems that there is no way to disable this portion of the automatically generated help from showing up. Here's an example from something I'm writing:
Results in this help string:
I'd like to include/format that information myself, so if there could be some sort of flag in
ArgParseSettings()
to disable that portion, that would be great.The text was updated successfully, but these errors were encountered: