Skip to content

Commit

Permalink
Add completions/spago.fish
Browse files Browse the repository at this point in the history
  • Loading branch information
matoruru authored and krobelus committed Oct 10, 2020
1 parent ddf0a8e commit d544cda
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions share/completions/spago.fish
@@ -0,0 +1,17 @@
# fish completion for spago, PureScript package manager and build tool
# version v0.16.0

spago --fish-completion-script (which spago) | source

function __fish_spago_is_arg_n --argument-names n
test $n -eq (count (string match -v -- '-*' (commandline -poc)))
end

function __fish_spago_pkgnames
for line in (spago ls packages 2> /dev/null)
set pkgname (echo $line | string match -r '[^\s]+')
echo $pkgname
end
end

complete -c spago -n '__fish_seen_subcommand_from install; and __fish_spago_is_arg_n 2' -a '(__fish_spago_pkgnames)'

0 comments on commit d544cda

Please sign in to comment.