Allows plugin to work on windows machines using the cmd.exe shell. Fixes #5.
5 is caused by the & character being improperly escaped. In Windows, starting a process in the background uses the start /B command instead.
I'm not sure why, but unfortunately the start command cannot write to the temp file created by vim, so the error specified in #5 is back, though for a different reason. Functionality is not affected, so I've just hidden the error away with vim's :silent command for now.
Allows plugin to work on windows machines using the cmd.exe shell. Fixes #5.
5 is caused by the
&
character being improperly escaped. In Windows, starting a process in the background uses thestart /B
command instead.I'm not sure why, but unfortunately the
start
command cannot write to the temp file created by vim, so the error specified in #5 is back, though for a different reason. Functionality is not affected, so I've just hidden the error away with vim's:silent
command for now.