You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
678 B
VimL
27 lines
678 B
VimL
7 years ago
|
" Author: w0rp <devw0rp@gmail.com>
|
||
|
" Description: Fixing files with autopep8.
|
||
|
|
||
|
call ale#Set('python_autopep8_executable', 'autopep8')
|
||
|
call ale#Set('python_autopep8_use_global', 0)
|
||
|
call ale#Set('python_autopep8_options', '')
|
||
|
|
||
|
function! ale#fixers#autopep8#Fix(buffer) abort
|
||
|
let l:executable = ale#python#FindExecutable(
|
||
|
\ a:buffer,
|
||
|
\ 'python_autopep8',
|
||
|
\ ['autopep8'],
|
||
|
\)
|
||
|
|
||
|
if !executable(l:executable)
|
||
|
return 0
|
||
|
endif
|
||
|
|
||
|
let l:options = ale#Var(a:buffer, 'python_autopep8_options')
|
||
|
|
||
|
return {
|
||
|
\ 'command': ale#Escape(l:executable)
|
||
|
\ . (!empty(l:options) ? ' ' . l:options : '')
|
||
|
\ . ' -',
|
||
|
\}
|
||
|
endfunction
|