#427 Implement buffer variable overrides for all linter options

This commit is contained in:
w0rp
2017-04-16 01:24:08 +01:00
parent e80116cee0
commit e97dada261
45 changed files with 117 additions and 108 deletions

View File

@@ -14,7 +14,7 @@ let g:ale_python_flake8_options =
let s:version_cache = {}
function! ale_linters#python#flake8#GetExecutable(buffer) abort
return g:ale_python_flake8_executable
return ale#Var(a:buffer, 'python_flake8_executable')
endfunction
function! ale_linters#python#flake8#VersionCheck(buffer) abort
@@ -64,7 +64,8 @@ function! ale_linters#python#flake8#GetCommand(buffer, version_output) abort
\ : ''
return ale_linters#python#flake8#GetExecutable(a:buffer)
\ . ' ' . g:ale_python_flake8_args . ' ' . l:display_name_args . ' -'
\ . ' ' . ale#Var(a:buffer, 'python_flake8_options')
\ . ' ' . l:display_name_args . ' -'
endfunction
call ale#linter#Define('python', {