diff --git a/README.md b/README.md index f0e0ddf..1563f87 100644 --- a/README.md +++ b/README.md @@ -30,8 +30,8 @@ Sadly Sublime doesn't allow for querying of currently chosen build system. Neither does it allow for effective hook into the builtin ```build``` command with custom arguments as such this package needs to emulate the ```build``` command. -To make it so that you can build before debugging you need to firstly change -```Remedy.sublime-settings``` secondly, you need to have +To make it so that you can build before debugging you need to: firstly change +```Remedy.sublime-settings```, secondly you need to have a project / project file. That project file needs a build system, if there is only one build system, everything is going to work. If there are more, you will need to add a field called ```remedy_build_system```, here is an example: diff --git a/remedy.py b/remedy.py index 369eff7..2d0848c 100644 --- a/remedy.py +++ b/remedy.py @@ -347,7 +347,6 @@ class RemedyBuildCommand(ExecCommand): if kwargs.get(key) != None: kwargs[key] = sublime.expand_variables(kwargs[key], variables) - print(os.environ) for key in os.environ.keys(): if key not in kwargs["env"]: kwargs["env"][key] = os.environ[key]