e376f0ae44
Add a gofmt fixer for golang.
19 lines
540 B
VimL
19 lines
540 B
VimL
" Author: aliou <code@aliou.me>
|
|
" Description: Integration of gofmt with ALE.
|
|
|
|
call ale#Set('go_gofmt_executable', 'gofmt')
|
|
call ale#Set('go_gofmt_options', '')
|
|
|
|
function! ale#fixers#gofmt#Fix(buffer) abort
|
|
let l:executable = ale#Var(a:buffer, 'go_gofmt_executable')
|
|
let l:options = ale#Var(a:buffer, 'go_gofmt_options')
|
|
|
|
return {
|
|
\ 'command': ale#Escape(l:executable)
|
|
\ . ' -l -w'
|
|
\ . (empty(l:options) ? '' : ' ' . l:options)
|
|
\ . ' %t',
|
|
\ 'read_temporary_file': 1,
|
|
\}
|
|
endfunction
|