Skip to content
New issue

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

[feature] support choice with description? #88

Open
Freed-Wu opened this issue Aug 27, 2022 · 0 comments
Open

[feature] support choice with description? #88

Freed-Wu opened this issue Aug 27, 2022 · 0 comments
Labels
enhancement New feature or request

Comments

@Freed-Wu
Copy link
Contributor

zsh/fish support choices with description, like:

❯ pip download --<TAB>
implementation
cp   cpython
ip   ironpython
jy   jython
pp   pypy
py   implementation-agnostic

A new feature

    parser.add_argument("--implementation", choices=["py", "cp", "pp", "ip", "jy"]).complete = {"cpython", "ironpython", "jython", "pypy", "implementation-agnostic"}
    # len(complete) must = len(choices), or complete must be a dict which keys is choices

Result:

  "--implementation: :((pp\:pypy jy\:jython cp\:cpython ip\:ironpython py\:implementation-agnostic))"
@casperdcl casperdcl added the enhancement New feature or request label Oct 26, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants