diff options
author | Diego Henrique Oliveira <contato@diegoholiveira.com> | 2024-09-05 03:37:30 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-05 15:37:30 +0900 |
commit | a7ef1817b7aa06d0f80952ad530be87ad3c8f6e2 (patch) | |
tree | 537f36c4c8d5bdaeb10eb29ffc5bb8e18ef55065 /ale_linters/python/pylsp.vim | |
parent | 954682108d21b412561fb32e3fa766c7ee539984 (diff) | |
download | ale-a7ef1817b7aa06d0f80952ad530be87ad3c8f6e2.zip |
Improve support for python package manage: pipenv, poetry and uv (#4825)
Diffstat (limited to 'ale_linters/python/pylsp.vim')
-rw-r--r-- | ale_linters/python/pylsp.vim | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/ale_linters/python/pylsp.vim b/ale_linters/python/pylsp.vim index a1c31018..d3db6e82 100644 --- a/ale_linters/python/pylsp.vim +++ b/ale_linters/python/pylsp.vim @@ -6,6 +6,7 @@ call ale#Set('python_pylsp_options', '') call ale#Set('python_pylsp_use_global', get(g:, 'ale_use_global_executables', 0)) call ale#Set('python_pylsp_auto_pipenv', 0) call ale#Set('python_pylsp_auto_poetry', 0) +call ale#Set('python_pylsp_auto_uv', 0) call ale#Set('python_pylsp_config', {}) function! ale_linters#python#pylsp#GetExecutable(buffer) abort @@ -19,6 +20,11 @@ function! ale_linters#python#pylsp#GetExecutable(buffer) abort return 'poetry' endif + if (ale#Var(a:buffer, 'python_auto_uv') || ale#Var(a:buffer, 'python_pylsp_auto_uv')) + \ && ale#python#UvPresent(a:buffer) + return 'uv' + endif + return ale#python#FindExecutable(a:buffer, 'python_pylsp', ['pylsp']) endfunction @@ -37,7 +43,7 @@ endfunction function! ale_linters#python#pylsp#GetCommand(buffer) abort let l:executable = ale_linters#python#pylsp#GetExecutable(a:buffer) - let l:exec_args = l:executable =~? 'pipenv\|poetry$' + let l:exec_args = l:executable =~? 'pipenv\|poetry\|uv$' \ ? ' run pylsp' \ : '' let l:env_string = '' |