Close #542 - Add an option for disabling running locally installed executables by default

This commit is contained in:
w0rp
2018-04-09 19:11:20 +01:00
parent 3a47413286
commit 719b790574
71 changed files with 109 additions and 92 deletions

View File

@@ -4,7 +4,7 @@
call ale#Set('python_mypy_executable', 'mypy')
call ale#Set('python_mypy_ignore_invalid_syntax', 0)
call ale#Set('python_mypy_options', '')
call ale#Set('python_mypy_use_global', 0)
call ale#Set('python_mypy_use_global', get(g:, 'ale_use_global_executables', 0))
function! ale_linters#python#mypy#GetExecutable(buffer) abort
return ale#python#FindExecutable(a:buffer, 'python_mypy', ['mypy'])