2018-03-31 10:55:20 -04:00
|
|
|
" Author: aurieh <me@aurieh.me>
|
|
|
|
" Description: A language server for Python
|
|
|
|
|
|
|
|
call ale#Set('python_pyls_executable', 'pyls')
|
2018-06-14 06:31:12 -04:00
|
|
|
call ale#Set('python_pyls_use_global', get(g:, 'ale_use_global_executables', 0))
|
2018-03-31 10:55:20 -04:00
|
|
|
|
|
|
|
function! ale_linters#python#pyls#GetExecutable(buffer) abort
|
|
|
|
return ale#python#FindExecutable(a:buffer, 'python_pyls', ['pyls'])
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! ale_linters#python#pyls#GetCommand(buffer) abort
|
|
|
|
let l:executable = ale_linters#python#pyls#GetExecutable(a:buffer)
|
|
|
|
|
2018-06-14 06:31:12 -04:00
|
|
|
let l:exec_args = l:executable =~? 'pipenv$'
|
|
|
|
\ ? ' run pyls'
|
|
|
|
\ : ''
|
2018-03-31 10:55:20 -04:00
|
|
|
|
2018-06-14 06:31:12 -04:00
|
|
|
return ale#Escape(l:executable) . l:exec_args
|
2018-03-31 10:55:20 -04:00
|
|
|
endfunction
|
|
|
|
|
|
|
|
call ale#linter#Define('python', {
|
|
|
|
\ 'name': 'pyls',
|
|
|
|
\ 'lsp': 'stdio',
|
|
|
|
\ 'executable_callback': 'ale_linters#python#pyls#GetExecutable',
|
|
|
|
\ 'command_callback': 'ale_linters#python#pyls#GetCommand',
|
|
|
|
\ 'project_root_callback': 'ale#python#FindProjectRoot',
|
2018-06-14 06:31:12 -04:00
|
|
|
\ 'completion_filter': 'ale#completion#python#CompletionItemFilter',
|
2018-03-31 10:55:20 -04:00
|
|
|
\})
|