aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFaris A Chugthai <20028782+farisachugthai@users.noreply.github.com>2020-05-20 07:57:46 -0400
committerGitHub <noreply@github.com>2020-05-20 13:57:46 +0200
commit7116105d661011cc4bdd5e01e1321d1e500b6b5b (patch)
treeeb1e5e25ae7ba1a7b5c82bfd9016f85b9b11048f
parent74fed7d50fc80fd9889a09812329e0c281bfde52 (diff)
downloadrneovim-7116105d661011cc4bdd5e01e1321d1e500b6b5b.tar.gz
rneovim-7116105d661011cc4bdd5e01e1321d1e500b6b5b.tar.bz2
rneovim-7116105d661011cc4bdd5e01e1321d1e500b6b5b.zip
provider: Add python3.9 to autoload/provider/pythonx.vim (#12344)
3.9's scheduled for beta release today. https://www.python.org/dev/peps/pep-0596/
-rw-r--r--runtime/autoload/provider/pythonx.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/autoload/provider/pythonx.vim b/runtime/autoload/provider/pythonx.vim
index 23e7ff8f64..ffb9bf3021 100644
--- a/runtime/autoload/provider/pythonx.vim
+++ b/runtime/autoload/provider/pythonx.vim
@@ -29,7 +29,7 @@ endfunction
function! s:get_python_candidates(major_version) abort
return {
\ 2: ['python2', 'python2.7', 'python2.6', 'python'],
- \ 3: ['python3', 'python3.8', 'python3.7', 'python3.6', 'python3.5',
+ \ 3: ['python3', 'python3.9', 'python3.8', 'python3.7', 'python3.6', 'python3.5',
\ 'python3.4', 'python3.3', 'python']
\ }[a:major_version]
endfunction