clap/clap_complete/tests/snapshots/home/static/exhaustive
Pawel Zmarzly be15bd5d96 fix(complete): Fix zsh.rs subcommand deduplication
Fixing the iteration over all_subcommands in zsh.rs. We deduplicate
values on (sc_name, bin_name) keys, but then only iterate on bin_name.
This doesn't cause problems now, since all bin names seem to be unique.
However, without fixing this, the next commit would have started
generating duplicated functions with same names.

For example, with an #[long = "foo", visible_alias = "bar"] subcommand,
we'll end up with 2 pairs: [("foo", "foo"), ("bar", "foo")]. Before this
commit, we would have ended up generating _my-app__foo_commands()
functions. These functions should have identical content, so it is not
an error, just an inefficiency that we can fix.
2024-05-17 15:16:43 +01:00
..
bash fix(complete): Avoid use of -v in bash completion 2024-04-07 23:19:50 +09:00
elvish/elvish fix(complete): Handle newlines in command/arg descriptions 2024-02-16 16:17:22 -06:00
fish/fish fix(complete): Handle newlines in command/arg descriptions 2024-02-16 16:17:22 -06:00
zsh fix(complete): Fix zsh.rs subcommand deduplication 2024-05-17 15:16:43 +01:00