diff options
author | Horacio Sanson <hsanson@gmail.com> | 2020-11-29 18:59:48 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-29 18:59:48 +0900 |
commit | 03b6978a270107b670b0363d50f3eed4b365ba26 (patch) | |
tree | d13bc6944519fae08068c37a05bb5f5d3d2421e2 /autoload | |
parent | 1365dce921c1fb84a668ae121d5d5aeebef99fbc (diff) | |
parent | 96ec33e6d6119fea01fee7aaed1e8a21ef6ef677 (diff) | |
download | ale-03b6978a270107b670b0363d50f3eed4b365ba26.zip |
Merge pull request #3381 from andreypopp/gofmt-stding-stdout
Use stdin/stdout to communicate with gofmt
Diffstat (limited to 'autoload')
-rw-r--r-- | autoload/ale/fixers/gofmt.vim | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/autoload/ale/fixers/gofmt.vim b/autoload/ale/fixers/gofmt.vim index d5a539b9..b9cfbb58 100644 --- a/autoload/ale/fixers/gofmt.vim +++ b/autoload/ale/fixers/gofmt.vim @@ -11,9 +11,6 @@ function! ale#fixers#gofmt#Fix(buffer) abort return { \ 'command': l:env . ale#Escape(l:executable) - \ . ' -l -w' \ . (empty(l:options) ? '' : ' ' . l:options) - \ . ' %t', - \ 'read_temporary_file': 1, \} endfunction |