forked from dense-analysis/ale
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: replace python-language-server to supported pylsp
As mentioned in dense-analysis#3722 palantir's python-language-server is no longer maintained. The alternative is to use the community-driven https://github.com/python-lsp/python-lsp-server.
- Loading branch information
Showing
18 changed files
with
152 additions
and
152 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
" Author: aurieh <[email protected]> | ||
" Description: A language server for Python | ||
|
||
call ale#Set('python_pylsp_executable', 'pylsp') | ||
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_config', {}) | ||
|
||
function! ale_linters#python#pylsp#GetExecutable(buffer) abort | ||
if (ale#Var(a:buffer, 'python_auto_pipenv') || ale#Var(a:buffer, 'python_pylsp_auto_pipenv')) | ||
\ && ale#python#PipenvPresent(a:buffer) | ||
return 'pipenv' | ||
endif | ||
|
||
return ale#python#FindExecutable(a:buffer, 'python_pylsp', ['pylsp']) | ||
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$' | ||
\ ? ' run pylsp' | ||
\ : '' | ||
|
||
return ale#Escape(l:executable) . l:exec_args . ale#Pad(ale#Var(a:buffer, 'python_pylsp_options')) | ||
endfunction | ||
|
||
call ale#linter#Define('python', { | ||
\ 'name': 'pylsp', | ||
\ 'lsp': 'stdio', | ||
\ 'executable': function('ale_linters#python#pylsp#GetExecutable'), | ||
\ 'command': function('ale_linters#python#pylsp#GetCommand'), | ||
\ 'project_root': function('ale#python#FindProjectRoot'), | ||
\ 'completion_filter': 'ale#completion#python#CompletionItemFilter', | ||
\ 'lsp_config': {b -> ale#Var(b, 'python_pylsp_config')}, | ||
\}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
Before: | ||
call ale#assert#SetUpLinterTest('python', 'pylsp') | ||
|
||
let b:bin_dir = has('win32') ? 'Scripts' : 'bin' | ||
|
||
After: | ||
unlet! b:bin_dir | ||
unlet! b:executable | ||
|
||
call ale#assert#TearDownLinterTest() | ||
|
||
Execute(The pylsp command callback should return default string): | ||
AssertLinter 'pylsp', ale#Escape('pylsp') | ||
|
||
Execute(The pylsp executable should be configurable): | ||
let g:ale_python_pylsp_executable = '~/.local/bin/pylsp' | ||
|
||
AssertLinter '~/.local/bin/pylsp' , ale#Escape('~/.local/bin/pylsp') | ||
|
||
Execute(The pylsp command callback should let you set options): | ||
let g:ale_python_pylsp_options = '--some-option' | ||
|
||
AssertLinter 'pylsp', ale#Escape('pylsp') . ' --some-option' | ||
|
||
Execute(The pylsp executable should be run from the virtualenv path): | ||
call ale#test#SetFilename('../test-files/python/with_virtualenv/subdir/foo/bar.py') | ||
|
||
let b:executable = ale#path#Simplify( | ||
\ g:dir . '/../test-files/python/with_virtualenv/env/' . b:bin_dir . '/pylsp' | ||
\) | ||
|
||
AssertEqual ale#Escape(b:executable), | ||
\ ale_linters#python#pylsp#GetCommand(bufnr('')) | ||
|
||
Execute(You should be able to override the pylsp virtualenv lookup): | ||
call ale#test#SetFilename('../test-files/python/with_virtualenv/subdir/foo/bar.py') | ||
|
||
let g:ale_python_pylsp_use_global = 1 | ||
|
||
AssertLinter 'pylsp', ale#Escape('pylsp') | ||
|
||
Execute(Setting executable to 'pipenv' appends 'run pylsp'): | ||
let g:ale_python_pylsp_executable = 'path/to/pipenv' | ||
|
||
AssertLinter 'path/to/pipenv', ale#Escape('path/to/pipenv') . ' run pylsp' | ||
|
||
Execute(Pipenv is detected when python_pylsp_auto_pipenv is set): | ||
let g:ale_python_pylsp_auto_pipenv = 1 | ||
call ale#test#SetFilename('../test-files/python/pipenv/whatever.py') | ||
|
||
AssertLinter 'pipenv', | ||
\ ale#Escape('pipenv') . ' run pylsp' | ||
|
||
Execute(Should accept configuration settings): | ||
AssertLSPConfig {} | ||
let b:ale_python_pylsp_config = {'pylsp': {'plugins': {'preload': {'enabled': v:false}}}} | ||
AssertLSPConfig {'pylsp': {'plugins': {'preload': {'enabled': v:false}}}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.