Originally posted by **gbsmith** August 7, 2024
If I have this
```
override fun aliases(): Map> = mapOf(
"--list" to listOf("--command=list"),
"ls" to listOf("--command=list"),
)
```
The `ls` alias works as expected, while `--list` spits out
```
Error: no such option --list
Error: missing option --command
```
Discussed in https://github.com/ajalt/clikt/discussions/534
This should be easy to support.