From 14363db5ce35d427f2b4b1ee28217edfe9ed3198 Mon Sep 17 00:00:00 2001 From: Kazuki Sakamoto Date: Thu, 19 Oct 2017 21:46:44 -0700 Subject: [PATCH] Fix settings for python.org binary --- src/MacVim/vimrc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/MacVim/vimrc b/src/MacVim/vimrc index 6ead7fef23..80fd7edf1b 100644 --- a/src/MacVim/vimrc +++ b/src/MacVim/vimrc @@ -28,10 +28,10 @@ endif " MacVim uses Homebrew python3 if installed, next try to use python.org binary if exists("&pythonthreedll") && exists("&pythonthreehome") && \ !filereadable(&pythonthreedll) - if filereadable("/Library/Frameworks/Python.framework/Versions/3.5/Python") + if filereadable("/Library/Frameworks/Python.framework/Versions/3.6/Python") " https://www.python.org/downloads/mac-osx/ - set pythonthreedll=/Library/Frameworks/Python.framework/Versions/3.5/Python - set pythonthreehome=/Library/Frameworks/Python.framework/Versions/3.5 + set pythonthreedll=/Library/Frameworks/Python.framework/Versions/3.6/Python + set pythonthreehome=/Library/Frameworks/Python.framework/Versions/3.6 endif endif