shime / vim-livedown

Vim plugin for Livedown.
493 stars 19 forks source link

Windows support #19

Closed benjaminheng closed 8 years ago

benjaminheng commented 8 years ago

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.

shime commented 8 years ago

Thank you!

bgshacklett commented 8 years ago

Awesome. Much appreciated.