mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-01 13:01:21 -03:00
Add completions/spago.fish
This commit is contained in:
committed by
Johannes Altmanninger
parent
ddf0a8e461
commit
d544cda937
17
share/completions/spago.fish
Normal file
17
share/completions/spago.fish
Normal file
@@ -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)'
|
||||
Reference in New Issue
Block a user