From d544cda9375f503c3e5a91cd8da51eb223b35a23 Mon Sep 17 00:00:00 2001 From: matoruru Date: Tue, 6 Oct 2020 15:08:16 +0900 Subject: [PATCH] Add completions/spago.fish --- share/completions/spago.fish | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 share/completions/spago.fish diff --git a/share/completions/spago.fish b/share/completions/spago.fish new file mode 100644 index 000000000..464f1c620 --- /dev/null +++ b/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)'