mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-12 04:58:57 +00:00
Dynamically invoke yarn completions so they aren't cached
Correct `-a (something)` to `-a '(something)'`
This commit is contained in:
parent
9d9afd8264
commit
c2e66b002a
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ function __yarn_list_packages
|
|||
end
|
||||
|
||||
|
||||
complete -f -c yarn -n '__fish_seen_subcommand_from remove' -a (set -l packages (__yarn_list_packages); echo $packages)
|
||||
complete -f -c yarn -n '__fish_seen_subcommand_from remove' -a '(__yarn_list_packages)'
|
||||
|
||||
complete -f -c yarn -n '__fish_use_subcommand' -a help
|
||||
|
||||
|
|
Loading…
Reference in a new issue