aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/functions/__fish_complete_cabal.fish
blob: 484710a84dd780bc1c0ba4f860bb77f4455595b6 (plain)
1
2
3
4
5
6
7
8
9
10
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