summaryrefslogtreecommitdiff
path: root/autoload
diff options
context:
space:
mode:
authorAndrey Popp <8mayday@gmail.com>2020-10-03 17:57:59 +0300
committerAndrey Popp <8mayday@gmail.com>2020-10-03 18:44:19 +0300
commit96ec33e6d6119fea01fee7aaed1e8a21ef6ef677 (patch)
treef9dd01a88714a5e0d01aaf029f8a7cac9e7723d2 /autoload
parentb91c6c2edd20794ad5637b561ed4c678647a76e5 (diff)
downloadale-96ec33e6d6119fea01fee7aaed1e8a21ef6ef677.zip
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