diff options
author | w0rp <w0rp@users.noreply.github.com> | 2018-03-18 17:42:07 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-18 17:42:07 +0000 |
commit | 434f22e44a1ed5a5be2628c1fdd5906cf1c9bc46 (patch) | |
tree | ad8286d9bb7c08668a5a0d59f40b452e374c9575 /autoload | |
parent | 440502dc939dc817cce1018619019b33c9b0fd42 (diff) | |
parent | 7e1a9a98103b74badc593bd0fea3c4ab6976ce81 (diff) | |
download | ale-434f22e44a1ed5a5be2628c1fdd5906cf1c9bc46.zip |
Merge pull request #1415 from fohte/fixer-rufo
Add rufo fixer for Ruby files
Diffstat (limited to 'autoload')
-rw-r--r-- | autoload/ale/fix/registry.vim | 5 | ||||
-rw-r--r-- | autoload/ale/fixers/rufo.vim | 20 |
2 files changed, 25 insertions, 0 deletions
diff --git a/autoload/ale/fix/registry.vim b/autoload/ale/fix/registry.vim index fdd51019..4c0703a5 100644 --- a/autoload/ale/fix/registry.vim +++ b/autoload/ale/fix/registry.vim @@ -85,6 +85,11 @@ let s:default_registry = { \ 'suggested_filetypes': ['ruby'], \ 'description': 'Fix ruby files with rubocop --auto-correct.', \ }, +\ 'rufo': { +\ 'function': 'ale#fixers#rufo#Fix', +\ 'suggested_filetypes': ['ruby'], +\ 'description': 'Fix ruby files with rufo', +\ }, \ 'standard': { \ 'function': 'ale#fixers#standard#Fix', \ 'suggested_filetypes': ['javascript'], diff --git a/autoload/ale/fixers/rufo.vim b/autoload/ale/fixers/rufo.vim new file mode 100644 index 00000000..01d537a9 --- /dev/null +++ b/autoload/ale/fixers/rufo.vim @@ -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 |