pycomplete icon indicating copy to clipboard operation
pycomplete copied to clipboard

Support for completing argument choices

Open ThatXliner opened this issue 5 years ago • 0 comments

Basically, if an argument was defined as

parser.add_argument(
    "type", choices=("foo", "bar", "baz"),  help="The type to spam",
)

Then it should complete

ThatXliner avatar Dec 15 '20 20:12 ThatXliner