I have compile chez scheme and installed sublime3 SublimeREPL and scheme in OSX system.
and config as How to configure SublimeREPL for mit-scheme? topic.
edit SublimeText3 >> InstalledPackages >> Scheme.sublime-package (open with Zip software) >> Scheme.sublime-build (modify to the following below)
{
"cmd": ["scm", "-f", "$file"],
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"selector": "source.scheme"
}
I can open chez scheme interpreter in sublimeREPL,but when I want to build file with "Build System: scheme", I got error"[Errno 2] No such file or directory: 'scheme'", how should I modified Build System code?