trevorld / r-argparse

command-line optional and positional argument parser
GNU General Public License v2.0
103 stars 11 forks source link

Support add_argument_group #26

Closed dariober closed 5 years ago

dariober commented 6 years ago

Hi- Is it possible to use or implement the add_argument_group as described in https://docs.python.org/3/library/argparse.html#argument-groups

Like:

parser<- ArgumentParser()
group1<- parser$add_argument_group('Group 1')
...

(I guess this falls in the same category as #14 and #23 but I'll try asking anyway...)

Thank you!

trevorld commented 5 years ago

Thanks for the feature request. Yes, falls in the same category as #14 and #23 . Implementing it will be a low priority for now.

trevorld commented 5 years ago

Should implement #25 before this.