oh-my-fish/plugins/python/_python.fish

9 lines
130 B
Fish

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