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
Originally posted by gbsmith August 7, 2024 If I have this
override fun aliases(): Map<String, List<String>> = mapOf( "--list" to listOf("--command=list"), "ls" to listOf("--command=list"), )
The ls alias works as expected, while --list spits out
ls
--list
Error: no such option --list Error: missing option --command
This should be easy to support.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Discussed in #534
Originally posted by gbsmith August 7, 2024
If I have this
The
ls
alias works as expected, while--list
spits outThis should be easy to support.
The text was updated successfully, but these errors were encountered: