The completions command added in c0048bb uses a one-level-deep template. There is no room in this template to generate completions for subcommands in a given context, so in general this means scenarios like the following cannot have completions generated for them.
[program] command subcommand --<tab>
This comes from python-poetry, where no completions exist for poetry env <tab> or poetry env list --<tab>
The
completionscommand added in c0048bb uses a one-level-deep template. There is no room in this template to generate completions for subcommands in a given context, so in general this means scenarios like the following cannot have completions generated for them.This comes from python-poetry, where no completions exist for
poetry env <tab>orpoetry env list --<tab>