-
Notifications
You must be signed in to change notification settings - Fork 63
Open
Labels
enhancementNew feature or requestNew feature or request
Description
An option that is configured with hidden=True
should not appear in the TUI.
Minimal example:
@tui()
@click.command()
@click.option("-f", "--foo", default=False, is_flag=True, hidden=False)
@click.option("-b", "--bar", default=False, is_flag=True, hidden=True)
def cli(foo, bar):
pass
In the above, foo
should appear, but bar
shouldn't.
(By the way, keep up the good work, the fixes in 0.4.0 are awesome!)
kinkerl and chrisjsewell
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request