summaryrefslogtreecommitdiff
path: root/autoload
diff options
context:
space:
mode:
authorHoracio Sanson <hsanson@gmail.com>2020-11-29 18:59:48 +0900
committerGitHub <noreply@github.com>2020-11-29 18:59:48 +0900
commit03b6978a270107b670b0363d50f3eed4b365ba26 (patch)
treed13bc6944519fae08068c37a05bb5f5d3d2421e2 /autoload
parent1365dce921c1fb84a668ae121d5d5aeebef99fbc (diff)
parent96ec33e6d6119fea01fee7aaed1e8a21ef6ef677 (diff)
downloadale-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.vim3
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