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!)
An option that is configured with
hidden=Trueshould not appear in the TUI.Minimal example:
In the above,
fooshould appear, butbarshouldn't.(By the way, keep up the good work, the fixes in 0.4.0 are awesome!)