We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug
gum choose --ordered used to work but not anymore
gum choose --ordered
To Reproduce Steps to reproduce the behavior:
#!/usr/bin/env bash touch values.yaml touch values-dev.yaml touch values-dev-2.yaml echo $(gum choose $(ls values*.yaml) --ordered --no-limit)
values-dev-2.yaml values-dev.yaml values.yaml
Expected behavior Per gum completion : "Maintain the order of the selected options"
Screenshots If applicable, add screenshots to help explain your problem.
Desktop (please complete the following information):
Additional context I looked at the source code, there is no reference anymore to Ordered flag, apart from its definition:
Ordered
gum/choose/options.go
Line 14 in 8c7abe7
The text was updated successfully, but these errors were encountered:
I can confirm - have the same issue. Using gum choose --ordered doesn't work for me.
Sorry, something went wrong.
fix(choose): --ordered
6730324
closes #687 Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2e1304f
caarlos0
Successfully merging a pull request may close this issue.
Describe the bug
gum choose --ordered
used to work but not anymoreTo Reproduce
Steps to reproduce the behavior:
values-dev-2.yaml values-dev.yaml values.yaml
whatever the orderExpected behavior
Per gum completion : "Maintain the order of the selected options"
Screenshots
If applicable, add screenshots to help explain your problem.
Desktop (please complete the following information):
Additional context
I looked at the source code, there is no reference anymore to
Ordered
flag, apart from its definition:gum/choose/options.go
Line 14 in 8c7abe7
The code handling the order disappeared with this commit : 44906e2
The text was updated successfully, but these errors were encountered: