diff options
author | Andrey Popp <8mayday@gmail.com> | 2020-10-03 17:57:59 +0300 |
---|---|---|
committer | Andrey Popp <8mayday@gmail.com> | 2020-10-03 18:44:19 +0300 |
commit | 96ec33e6d6119fea01fee7aaed1e8a21ef6ef677 (patch) | |
tree | f9dd01a88714a5e0d01aaf029f8a7cac9e7723d2 /autoload | |
parent | b91c6c2edd20794ad5637b561ed4c678647a76e5 (diff) | |
download | ale-96ec33e6d6119fea01fee7aaed1e8a21ef6ef677.zip |
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 |