Skip to content

Commit b906f87

Browse files
authored
Merge pull request #891 from eirnym/remove-pythonhome
Remove setting default pythonhome and pythonthreehome
2 parents e83f846 + cfe85f1 commit b906f87

1 file changed

Lines changed: 0 additions & 5 deletions

File tree

src/MacVim/vimrc

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,12 @@ if exists("&pythondll") && exists("&pythonhome")
2222
if filereadable("/usr/local/Frameworks/Python.framework/Versions/2.7/Python")
2323
" Homebrew python 2.7
2424
set pythondll=/usr/local/Frameworks/Python.framework/Versions/2.7/Python
25-
set pythonhome=/usr/local/Frameworks/Python.framework/Versions/2.7
2625
elseif filereadable("/opt/local/Library/Frameworks/Python.framework/Versions/2.7/Python")
2726
" MacPorts python 2.7
2827
set pythondll=/opt/local/Library/Frameworks/Python.framework/Versions/2.7/Python
29-
set pythonhome=/opt/local/Library/Frameworks/Python.framework/Versions/2.7
3028
elseif filereadable("/Library/Frameworks/Python.framework/Versions/2.7/Python")
3129
" https://www.python.org/downloads/mac-osx/
3230
set pythondll=/Library/Frameworks/Python.framework/Versions/2.7/Python
33-
set pythonhome=/Library/Frameworks/Python.framework/Versions/2.7
3431
endif
3532
endif
3633

@@ -43,11 +40,9 @@ if exists("&pythonthreedll") && exists("&pythonthreehome") &&
4340
if filereadable("/opt/local/Library/Frameworks/Python.framework/Versions/3.7/Python")
4441
" MacPorts python 3.7
4542
set pythonthreedll=/opt/local/Library/Frameworks/Python.framework/Versions/3.7/Python
46-
set pythonthreehome=/opt/local/Library/Frameworks/Python.framework/Versions/3.7
4743
elseif filereadable("/Library/Frameworks/Python.framework/Versions/3.7/Python")
4844
" https://www.python.org/downloads/mac-osx/
4945
set pythonthreedll=/Library/Frameworks/Python.framework/Versions/3.7/Python
50-
set pythonthreehome=/Library/Frameworks/Python.framework/Versions/3.7
5146
endif
5247
endif
5348

0 commit comments

Comments
 (0)