diff options
author | w0rp <w0rp@users.noreply.github.com> | 2020-08-17 21:44:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-17 21:44:19 +0100 |
commit | ac56574b55a11a8a921bb5169dd4dd3a7348aeeb (patch) | |
tree | 5c2deb5e1c73470670bca4190087f905e3315428 /autoload | |
parent | 6d33417b15dd65bdf91cf2945c6c13ab0f72e604 (diff) | |
parent | c207d6a550916f4d34a41711c64024251466fea5 (diff) | |
download | ale-ac56574b55a11a8a921bb5169dd4dd3a7348aeeb.zip |
Merge pull request #3046 from hsanson/2816-fix-standard-fix-doesnt-work
Fix 2816 - Standard fix does not work.
Diffstat (limited to 'autoload')
-rw-r--r-- | autoload/ale/fixers/standard.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autoload/ale/fixers/standard.vim b/autoload/ale/fixers/standard.vim index cffa9f9d..46decebf 100644 --- a/autoload/ale/fixers/standard.vim +++ b/autoload/ale/fixers/standard.vim @@ -27,7 +27,7 @@ function! ale#fixers#standard#Fix(buffer) abort return { \ 'command': ale#node#Executable(a:buffer, l:executable) \ . (!empty(l:options) ? ' ' . l:options : '') - \ . ' --fix %t', + \ . ' --fix --stdin < %s > %t', \ 'read_temporary_file': 1, \} endfunction |