Advertisement
Guest User

Untitled

a guest
Jan 21st, 2017
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. diff --git a/autoload/quickrun/runner/job.vim b/autoload/quickrun/runner/job.vim
  2. index 96e0921..9184f68 100644
  3. --- a/autoload/quickrun/runner/job.vim
  4. +++ b/autoload/quickrun/runner/job.vim
  5. @@ -23,7 +23,7 @@ endfunction
  6.  
  7. function! s:runner.run(commands, input, session) abort
  8. let command = join(a:commands, ' && ')
  9. - let cmd_arg = s:is_win ? ['cmd.exe', '/c', command]
  10. + let cmd_arg = s:is_win ? "cmd.exe /c ^" . command
  11. \ : ['sh', '-c', command]
  12. let options = {
  13. \ 'mode': 'raw',
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement