aboutsummaryrefslogtreecommitdiff
path: root/runtime/autoload/provider/pythonx.vim
diff options
context:
space:
mode:
authorMarco Hinz <mh.codebro@gmail.com>2017-01-05 21:29:31 +0100
committerJustin M. Keyes <justinkz@gmail.com>2017-01-05 21:29:31 +0100
commit1fbee630a8f2db83359e225802ee1bc9eef55e65 (patch)
treeece4e5e0f78339cc8b0906e5c1c1e36931f7ef5d /runtime/autoload/provider/pythonx.vim
parent7a344c795f30bc45adb3973931dbedbdfed7e67c (diff)
downloadrneovim-1fbee630a8f2db83359e225802ee1bc9eef55e65.tar.gz
rneovim-1fbee630a8f2db83359e225802ee1bc9eef55e65.tar.bz2
rneovim-1fbee630a8f2db83359e225802ee1bc9eef55e65.zip
provider: add Python 3.6 (#5886)
Diffstat (limited to 'runtime/autoload/provider/pythonx.vim')
-rw-r--r--runtime/autoload/provider/pythonx.vim3
1 files changed, 2 insertions, 1 deletions
diff --git a/runtime/autoload/provider/pythonx.vim b/runtime/autoload/provider/pythonx.vim
index f46c260fa3..08a0f39b01 100644
--- a/runtime/autoload/provider/pythonx.vim
+++ b/runtime/autoload/provider/pythonx.vim
@@ -57,7 +57,8 @@ function! provider#pythonx#Detect(major_ver) abort
if exists('g:python3_host_prog')
return [g:python3_host_prog, '']
else
- let progs = ['python3', 'python3.5', 'python3.4', 'python3.3', 'python']
+ let progs = ['python3', 'python3.7', 'python3.6', 'python3.5',
+ \ 'python3.4', 'python3.3', 'python']
endif
endif