diff options
-rw-r--r-- | autoload/ale/engine.vim | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/autoload/ale/engine.vim b/autoload/ale/engine.vim index b9a9ff9d..c56e1c3c 100644 --- a/autoload/ale/engine.vim +++ b/autoload/ale/engine.vim @@ -199,6 +199,9 @@ function! ale#engine#Invoke(buffer, linter) abort " .cmd, .bat, .exe, etc. let l:command = 'cmd /c ' . l:command else + " Execute the command with the shell, to fix escaping issues. + let l:command = split(&shell) + split(&shellcmdflag) + [l:command] + " On Unix machines, we can send the Vim buffer directly. " This is faster than reading the lines ourselves. let job_options.in_io = 'buffer' |