aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarco Hinz <mh.codebro@gmail.com>2019-11-17 14:23:17 +0100
committerGitHub <noreply@github.com>2019-11-17 14:23:17 +0100
commit97f1222005838912e127e4180d7b779c82e8356d (patch)
tree2535be10aa47665d2288944f01308ff3d51416a3
parenta45890e82e7cff52f9473d631a5439d2d368daa2 (diff)
downloadrneovim-97f1222005838912e127e4180d7b779c82e8356d.tar.gz
rneovim-97f1222005838912e127e4180d7b779c82e8356d.tar.bz2
rneovim-97f1222005838912e127e4180d7b779c82e8356d.zip
provider/python: add python3.8 executable (#11402)
Python 3.8 was released 2019-10-14: https://www.python.org/dev/peps/pep-0569
-rw-r--r--runtime/autoload/provider/pythonx.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/autoload/provider/pythonx.vim b/runtime/autoload/provider/pythonx.vim
index aec18c0508..23e7ff8f64 100644
--- a/runtime/autoload/provider/pythonx.vim
+++ b/runtime/autoload/provider/pythonx.vim
@@ -29,8 +29,8 @@ endfunction
function! s:get_python_candidates(major_version) abort
return {
\ 2: ['python2', 'python2.7', 'python2.6', 'python'],
- \ 3: ['python3', 'python3.7', 'python3.6', 'python3.5', 'python3.4', 'python3.3',
- \ 'python']
+ \ 3: ['python3', 'python3.8', 'python3.7', 'python3.6', 'python3.5',
+ \ 'python3.4', 'python3.3', 'python']
\ }[a:major_version]
endfunction