We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
An option that is configured with hidden=True should not appear in the TUI.
hidden=True
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.
foo
bar
(By the way, keep up the good work, the fixes in 0.4.0 are awesome!)
The text was updated successfully, but these errors were encountered:
Still no news on this one?
Sorry, something went wrong.
@daneah This is probably fixed by this PR #32
Nvmd, similar but not same field
No branches or pull requests
An option that is configured with
hidden=True
should not appear in the TUI.Minimal example:
In the above,
foo
should appear, butbar
shouldn't.(By the way, keep up the good work, the fixes in 0.4.0 are awesome!)
The text was updated successfully, but these errors were encountered: