2
0
Fork 0
mirror of https://github.com/fish-shell/fish-shell synced 2025-02-17 14:39:01 +00:00
fish-shell/share/completions/cabal.fish

13 lines
352 B
Fish
Raw Normal View History

2015-09-28 16:08:01 +02:00
function __fish_complete_cabal
if type -q -f cabal
set cmd (commandline -poc)
if test (count $cmd) -gt 1
cabal $cmd[2..-1] --list-options
else
cabal --list-options
end
end
end
2013-05-04 16:48:24 +02:00
complete -c cabal -a '(__fish_complete_cabal)'