summaryrefslogtreecommitdiff
path: root/dot_config/private_fish/functions/f.fish
blob: a3a5e33b9a8ed9e366be9bd38be842355d70f2ec (plain) (blame)
1
2
3
4
5
6
7
8
9
function f --wraps=fossil
  set -l maybecmd fossil-$argv[1]
  if type -q $maybecmd;
    set -e argv[1];
    $maybecmd $argv;
  else
    fossil $argv;
  end
end