summaryrefslogtreecommitdiffstats
path: root/fish/functions/perldoc.fish
blob: ad7bf5ed431028271030d37e712bfd53d624d2a0 (plain) (blame)
1
2
3
4
5
6
7
function perldoc
    if type cpandoc > /dev/null 2>&1
        cpandoc $argv
    else
        command perldoc $argv
    end
end