mirror of
https://github.com/dense-analysis/ale.git
synced 2026-02-28 20:42:26 +08:00
Add rufo fixer for ruby files
This commit is contained in:
20
autoload/ale/fixers/rufo.vim
Normal file
20
autoload/ale/fixers/rufo.vim
Normal file
@@ -0,0 +1,20 @@
|
||||
" Author: Fohte (Hayato Kawai) https://github.com/fohte
|
||||
" Description: Integration of Rufo with ALE.
|
||||
|
||||
call ale#Set('ruby_rufo_executable', 'rufo')
|
||||
|
||||
function! ale#fixers#rufo#GetCommand(buffer) abort
|
||||
let l:executable = ale#Var(a:buffer, 'ruby_rufo_executable')
|
||||
let l:exec_args = l:executable =~? 'bundle$'
|
||||
\ ? ' exec rufo'
|
||||
\ : ''
|
||||
|
||||
return ale#Escape(l:executable) . l:exec_args . ' %t'
|
||||
endfunction
|
||||
|
||||
function! ale#fixers#rufo#Fix(buffer) abort
|
||||
return {
|
||||
\ 'command': ale#fixers#rufo#GetCommand(a:buffer),
|
||||
\ 'read_temporary_file': 1,
|
||||
\}
|
||||
endfunction
|
||||
Reference in New Issue
Block a user