mirror of
https://github.com/oh-my-fish/oh-my-fish.git
synced 2025-02-24 09:30:54 +08:00
9 lines
130 B
Fish
9 lines
130 B
Fish
# Use python2 if found, otherwise fallback to python.
|
|
function _python
|
|
if which python2
|
|
python2
|
|
else
|
|
python
|
|
end
|
|
end
|