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
From pallets/click#430 (comment):
Using
@click.group(cls=DefaultGroup, default='shell', default_if_no_args=True)
breaks the auto-completion integration with prompt-toolkit from click-repl.
prompt-toolkit
Why is it preferred versus the following anyway (which works, and does not break click-repl?
@click.group(invoke_without_command=True) @click.option( '--profile', help='profile to use', default=u'default' ) @click.pass_context def cli(ctx, profile): ctx.obj = Config(_app, profile) if ctx.invoked_subcommand is None: ctx.invoke(cmd_shell)
The text was updated successfully, but these errors were encountered:
Why is it preferred versus the following
I tried that, and couldn't get all the arguments being passed to the subcommand to work.
Sorry, something went wrong.
sublee
No branches or pull requests
From pallets/click#430 (comment):
Using
@click.group(cls=DefaultGroup, default='shell', default_if_no_args=True)
breaks the auto-completion integration with
prompt-toolkit
from click-repl.Why is it preferred versus the following anyway (which works, and does not break click-repl?
The text was updated successfully, but these errors were encountered: