diff options
author | E.J. Sexton <ejsexton82@gmail.com> | 2017-12-01 14:55:34 +0100 |
---|---|---|
committer | E.J. Sexton <ejsexton82@gmail.com> | 2017-12-01 14:55:34 +0100 |
commit | 6b3927820bd46cb25e8741d04c13dec15401f92f (patch) | |
tree | a3c48d29f25646138e134603d1d5160fb10ab3d5 | |
parent | 948035e13d466d4e9a1a0cd9a1596cc39bde501e (diff) | |
download | ale-6b3927820bd46cb25e8741d04c13dec15401f92f.zip |
Fixed command string for phpcbf fixer
-rw-r--r-- | autoload/ale/fixers/phpcbf.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autoload/ale/fixers/phpcbf.vim b/autoload/ale/fixers/phpcbf.vim index 9bff7412..649e17d3 100644 --- a/autoload/ale/fixers/phpcbf.vim +++ b/autoload/ale/fixers/phpcbf.vim @@ -19,6 +19,6 @@ function! ale#fixers#phpcbf#Fix(buffer) abort \ ? '--standard=' . l:standard \ : '' return { - \ 'command': ale#Escape(l:executable) . ' --stdin-path=%s ' . l:standard_option + \ 'command': ale#Escape(l:executable) . ' --stdin-path=%s ' . l:standard_option . ' -' \} endfunction |