fish-shell/share/completions/spago.fish

15 lines
485 B
Fish
Raw Normal View History

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