mirror of
https://github.com/oh-my-fish/oh-my-fish
synced 2024-11-03 15:40:32 +00:00
Fix python version detection in theme bobthefish
Relax the python version matching, so `python` that symlinks to either major versions (e.g. 2, 3) or minor versions (e.g. 2.7, 3.4) can be properly detected. Note that currently both pypy and pypy3 have same display glyph.
This commit is contained in:
parent
d8077b31c7
commit
681d02b05a
@ -327,11 +327,11 @@ end
|
|||||||
function __bobthefish_virtualenv_python_version -d 'Get current python version'
|
function __bobthefish_virtualenv_python_version -d 'Get current python version'
|
||||||
set -l python_version (readlink (which python))
|
set -l python_version (readlink (which python))
|
||||||
switch "$python_version"
|
switch "$python_version"
|
||||||
case python2
|
case 'python2*'
|
||||||
echo $__bobthefish_superscript_glyph[2]
|
echo $__bobthefish_superscript_glyph[2]
|
||||||
case python3
|
case 'python3*'
|
||||||
echo $__bobthefish_superscript_glyph[3]
|
echo $__bobthefish_superscript_glyph[3]
|
||||||
case pypy
|
case 'pypy*'
|
||||||
echo $__bobthefish_pypy_glyph
|
echo $__bobthefish_pypy_glyph
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user