We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a625661 commit 5b58b6dCopy full SHA for 5b58b6d
autoload/dispatch/job.vim
@@ -19,7 +19,7 @@ function! dispatch#job#handle(request) abort
19
return 0
20
endif
21
if exists('*job_start')
22
- let job = job_start([&shell, &shellcmdflag, a:request.expanded], {
+ let job = job_start(split(&shell) + split(&shellcmdflag) + [a:request.expanded], {
23
\ 'mode': 'raw',
24
\ 'callback': function('s:output'),
25
\ 'close_cb': function('s:closed'),
0 commit comments