more specifically here in [fish_completions.go:56][1]: ```fish set -l requestComp "%[10]s=0 $args[1] %[3]s $args[2..-1] $lastArg" ``` where the references `$args[1]`, `$args[2..-1]` and `$lastArg` should have been quoted. [1]: https://github.com/spf13/cobra/blob/c8a20a16bafa2dc85d304b59b2e677c7f75a73a6/fish_completions.go#L56 Downstream issue: https://github.com/mikefarah/yq/issues/1502