summaryrefslogtreecommitdiff
path: root/ale_linters/python/pyls.vim
diff options
context:
space:
mode:
Diffstat (limited to 'ale_linters/python/pyls.vim')
-rw-r--r--ale_linters/python/pyls.vim37
1 files changed, 0 insertions, 37 deletions
diff --git a/ale_linters/python/pyls.vim b/ale_linters/python/pyls.vim
deleted file mode 100644
index 10304b2c..00000000
--- a/ale_linters/python/pyls.vim
+++ /dev/null
@@ -1,37 +0,0 @@
-" Author: aurieh <me@aurieh.me>
-" Description: A language server for Python
-
-call ale#Set('python_pyls_executable', 'pyls')
-call ale#Set('python_pyls_options', '')
-call ale#Set('python_pyls_use_global', get(g:, 'ale_use_global_executables', 0))
-call ale#Set('python_pyls_auto_pipenv', 0)
-call ale#Set('python_pyls_config', {})
-
-function! ale_linters#python#pyls#GetExecutable(buffer) abort
- if (ale#Var(a:buffer, 'python_auto_pipenv') || ale#Var(a:buffer, 'python_pyls_auto_pipenv'))
- \ && ale#python#PipenvPresent(a:buffer)
- return 'pipenv'
- endif
-
- 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)
-
- let l:exec_args = l:executable =~? 'pipenv$'
- \ ? ' run pyls'
- \ : ''
-
- return ale#Escape(l:executable) . l:exec_args . ale#Pad(ale#Var(a:buffer, 'python_pyls_options'))
-endfunction
-
-call ale#linter#Define('python', {
-\ 'name': 'pyls',
-\ 'lsp': 'stdio',
-\ 'executable': function('ale_linters#python#pyls#GetExecutable'),
-\ 'command': function('ale_linters#python#pyls#GetCommand'),
-\ 'project_root': function('ale#python#FindProjectRoot'),
-\ 'completion_filter': 'ale#completion#python#CompletionItemFilter',
-\ 'lsp_config': {b -> ale#Var(b, 'python_pyls_config')},
-\})