-
Oi! There is an argument
But these ids won't really help the user. Because nobody really remembers them. So for me, it would make much more sense to make it work like this:
The tool is working with YAML files and with Gitlab, so these values (ids, names, emails, etc) can be taken from these sources. Is it possible to do something like that? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
At the moment, clap supports compeleting
The static enumerates values ( We do not have support for dynamic completions yet, see #1232. I'll make a note on that issue so we don't forget help text for dynamic completions. |
Beta Was this translation helpful? Give feedback.
At the moment, clap supports compeleting
The static enumerates values (
possible_values
/ArgEnum
) support help text with them (PossibleValue::help
) which will show up in completions that support it.We do not have support for dynamic completions yet, see #1232. I'll make a note on that issue so we don't forget help text for dynamic completions.