You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For some reason my python install loses its pyls executable frequently, even though the module remains and is still works fine with python -m pyls. I've tried let g:ale_python_pyls_executable = "/usr/local/bin/python3 -m pyls" but this doesn't work. Being able to follow the example of several other python linters and use:
let g:ale_python_pyls_executable = 'python3'
let g:ale_python_pyls_options = '-m pyls'
seems like it would do the trick. I'd be happy to work on a PR if this seems acceptable.
The text was updated successfully, but these errors were encountered:
pyls
is conspicuously missing from the list of python linters that supports additional command line arguments:It's been discussed in the context of changing the pyls configuration, but my use case (and I suspect the more common use case) would be for invoking pyls as a module, like this example in the documentation for flake8 .
For some reason my python install loses its
pyls
executable frequently, even though the module remains and is still works fine withpython -m pyls
. I've triedlet g:ale_python_pyls_executable = "/usr/local/bin/python3 -m pyls"
but this doesn't work. Being able to follow the example of several other python linters and use:seems like it would do the trick. I'd be happy to work on a PR if this seems acceptable.
The text was updated successfully, but these errors were encountered: