Skip to content

Commit 72f2e94

Browse files
authored
Merge pull request #565 from macvim-dev/fix/python3
Fix settings for python.org binary
2 parents 9a32768 + 14363db commit 72f2e94

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/MacVim/vimrc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ endif
2828
" MacVim uses Homebrew python3 if installed, next try to use python.org binary
2929
if exists("&pythonthreedll") && exists("&pythonthreehome") &&
3030
\ !filereadable(&pythonthreedll)
31-
if filereadable("/Library/Frameworks/Python.framework/Versions/3.5/Python")
31+
if filereadable("/Library/Frameworks/Python.framework/Versions/3.6/Python")
3232
" https://www.python.org/downloads/mac-osx/
33-
set pythonthreedll=/Library/Frameworks/Python.framework/Versions/3.5/Python
34-
set pythonthreehome=/Library/Frameworks/Python.framework/Versions/3.5
33+
set pythonthreedll=/Library/Frameworks/Python.framework/Versions/3.6/Python
34+
set pythonthreehome=/Library/Frameworks/Python.framework/Versions/3.6
3535
endif
3636
endif
3737

0 commit comments

Comments
 (0)