fish-shell/share/completions/spago.fish
Johannes Altmanninger 29f35d6cdf completion: adopt commandline -x replacing deprecated -o
This gives us more accurate completions because completion scripts get
expanded paths
2024-01-27 09:28:06 +01:00

15 lines
485 B
Fish

# fish completion for spago, PureScript package manager and build tool
# version v0.16.0
spago --fish-completion-script (command -v spago) | source
function __fish_spago_is_arg_n --argument-names n
test $n -eq (count (string match -v -- '-*' (commandline -pxc)))
end
function __fish_spago_pkgnames
spago ls packages 2>/dev/null | string match -r '\S+'
end
complete -c spago -n '__fish_seen_subcommand_from install; and __fish_spago_is_arg_n 2' -a '(__fish_spago_pkgnames)'