mirror of
https://github.com/neovim/neovim.git
synced 2025-11-10 12:35:29 +00:00
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/
This commit is contained in:
@@ -29,7 +29,7 @@ endfunction
|
|||||||
function! s:get_python_candidates(major_version) abort
|
function! s:get_python_candidates(major_version) abort
|
||||||
return {
|
return {
|
||||||
\ 2: ['python2', 'python2.7', 'python2.6', 'python'],
|
\ 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']
|
\ 'python3.4', 'python3.3', 'python']
|
||||||
\ }[a:major_version]
|
\ }[a:major_version]
|
||||||
endfunction
|
endfunction
|
||||||
|
|||||||
Reference in New Issue
Block a user