mirror of
1
0
Fork 0
ultimate-vim/sources_non_forked/ale/autoload/ale/fixers/isort.vim

72 lines
2.1 KiB
VimL
Raw Normal View History

" Author: w0rp <devw0rp@gmail.com>
" Description: Fixing Python imports with isort.
call ale#Set('python_isort_executable', 'isort')
2018-06-14 06:31:12 -04:00
call ale#Set('python_isort_use_global', get(g:, 'ale_use_global_executables', 0))
2021-05-05 04:25:00 -04:00
call ale#Set('python_isort_options', '')
call ale#Set('python_isort_auto_pipenv', 0)
2021-10-11 05:30:43 -04:00
call ale#Set('python_isort_auto_poetry', 0)
2021-05-05 04:25:00 -04:00
function! ale#fixers#isort#GetExecutable(buffer) abort
if (ale#Var(a:buffer, 'python_auto_pipenv') || ale#Var(a:buffer, 'python_isort_auto_pipenv'))
\ && ale#python#PipenvPresent(a:buffer)
return 'pipenv'
endif
2021-10-11 05:30:43 -04:00
if (ale#Var(a:buffer, 'python_auto_poetry') || ale#Var(a:buffer, 'python_isort_auto_poetry'))
\ && ale#python#PoetryPresent(a:buffer)
return 'poetry'
endif
2021-05-05 04:25:00 -04:00
return ale#python#FindExecutable(a:buffer, 'python_isort', ['isort'])
endfunction
2021-10-28 15:48:21 -04:00
function! ale#fixers#isort#GetCmd(buffer) abort
let l:executable = ale#fixers#isort#GetExecutable(a:buffer)
let l:cmd = [ale#Escape(l:executable)]
if l:executable =~? 'pipenv\|poetry$'
call extend(l:cmd, ['run', 'isort'])
endif
return join(l:cmd, ' ')
endfunction
function! ale#fixers#isort#FixForVersion(buffer, version) abort
2021-05-05 04:25:00 -04:00
let l:executable = ale#fixers#isort#GetExecutable(a:buffer)
2021-10-11 05:30:43 -04:00
let l:cmd = [ale#Escape(l:executable)]
2018-07-19 08:52:53 -04:00
2021-10-11 05:30:43 -04:00
if l:executable =~? 'pipenv\|poetry$'
call extend(l:cmd, ['run', 'isort'])
endif
2021-10-28 15:48:21 -04:00
if ale#semver#GTE(a:version, [5, 7, 0])
call add(l:cmd, '--filename %s')
endif
2021-10-11 05:30:43 -04:00
let l:options = ale#Var(a:buffer, 'python_isort_options')
if !empty(l:options)
call add(l:cmd, l:options)
endif
call add(l:cmd, '-')
return {
2021-05-05 04:25:00 -04:00
\ 'cwd': '%s:h',
2021-10-28 15:48:21 -04:00
\ 'command': join(l:cmd, ' '),
\}
endfunction
2021-10-28 15:48:21 -04:00
function! ale#fixers#isort#Fix(buffer) abort
let l:executable = ale#fixers#isort#GetExecutable(a:buffer)
let l:command = ale#fixers#isort#GetCmd(a:buffer) . ale#Pad('--version')
return ale#semver#RunWithVersionCheck(
\ a:buffer,
\ l:executable,
\ l:command,
\ function('ale#fixers#isort#FixForVersion'),
\)
endfunction