default complete function does not display descriptions #1388
-
Due to some requirement, i have made a default command by overriding the default() function as shown below:
Because of this, most of the time users would be invoking 'run' command directly with arguments instead of calling 'run ':
To autocomplete for the default function i have overriden the
May i know if there is a way to make this work? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
@kmvanbrunt This sounds up your alley if you get a chance ... |
Beta Was this translation helpful? Give feedback.
-
Since |
Beta Was this translation helpful? Give feedback.
CompletionItem
handling is only present in theargparse
tab completion code.Since
default()
is not an argparse-decorated command, nor can it be since it's not ado_xxx
function, only basic tab completion is supported.