fish-shell/share/functions/__fish_complete_cabal.fish

11 lines
304 B
Fish
Raw Normal View History

2013-05-04 22:48:24 +08:00
function __fish_complete_cabal
if type -q -f cabal
2013-05-04 22:48:24 +08:00
set cmd (commandline -poc)
if test (count $cmd) -gt 1
cabal $cmd[2..-1] --list-options
else
cabal --list-options
end
end
end