mirror of
https://github.com/dense-analysis/ale.git
synced 2025-12-06 12:44:23 +08:00
#81 - Run commands through the shell on Unix machines
This commit is contained in:
@@ -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'
|
||||
|
||||
Reference in New Issue
Block a user