dotfiles/fish/.config/fish/functions/mutt.fish

8 lines
118 B
Fish
Raw Normal View History

2020-06-19 05:50:24 +00:00
function mutt
if type -q neomutt >/dev/null
neomutt $argv
else
command mutt $argv
end
end