You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The autocomplete supports only one flag. It should also support autocompletion for rest of the flags.
one: Flags.string({
description: 'The first flag',
}),
two: Flags.string({
description: 'The second flag',
}),
three: Flags.string({
description: 'The third flag',
})
Type following command. Then type - followed by tab press (to see the available flags i.e. --two ---three.) mycli --one -<TAB>
Observation:
Autocomplete does not list any flags.
Expectation:
All the flags should be listed for the given command.
$ mycli --one
--two --three
The text was updated successfully, but these errors were encountered:
The autocomplete supports only one flag. It should also support autocompletion for rest of the flags.
Type following command. Then type - followed by tab press (to see the available flags i.e.
--two ---three
.)mycli --one -<TAB>
Observation:
Autocomplete does not list any flags.
Expectation:
All the flags should be listed for the given command.
The text was updated successfully, but these errors were encountered: