diff options
author | w0rp <w0rp@users.noreply.github.com> | 2017-12-02 12:25:13 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-02 12:25:13 +0000 |
commit | 83760a09521b134497c5d3299cc9962cff8ab76e (patch) | |
tree | 84a59444b8c91477279559b2a5d82d12b88ae1fe /autoload | |
parent | 6650c9a901ae35e76754a389ee1ae67b6dfb754f (diff) | |
parent | 122fdfd329eaaf16dd473094aad1e94281aee88b (diff) | |
download | ale-83760a09521b134497c5d3299cc9962cff8ab76e.zip |
Merge pull request #1188 from ejsexton82/master
Fixed Command String for phpcbf Fixer
Diffstat (limited to 'autoload')
-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 |