In older version (3.0.2) I could create a file with spaces, "test file.bat" for example, and then F5 would run the commands in the file. With newer versions I get this error:
'test' is not recognized as an internal or external command,
The command is no longer quoted when executed. This is on windows 7.
Previous versions set the current directory to the directory of the file before trying to run it but this was removed because it interfered with other features.
CreateProcess appears to make a check of the current directory to find a file match and this isn't done now. Placing quotes around the file name appears to fix the problem:
command.go.*.bat="$(FileNameExt)"
Fix committed.