Use "type" instead of "cat" on windows (#836)

pull/838/head
Prabir Shrestha 7 years ago committed by Junegunn Choi
parent 5bb18b6441
commit a847fe8754

@ -304,7 +304,7 @@ try
elseif type == 3
let temps.input = tempname()
call writefile(source, temps.input)
let prefix = 'cat '.s:shellesc(temps.input).'|'
let prefix = (s:is_win ? 'type ' : 'cat ').s:shellesc(temps.input).'|'
else
throw 'invalid source type'
endif

Loading…
Cancel
Save