You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
oh-my-fish/plugins/python/_python.fish

9 lines
142 B
Fish

# Use python2 if found, otherwise fallback to python.
function _python
if which python2
python2 $argv
else
python $argv
end
end