Whenever I hit ALT-SHIFT-D to compile into JS, sublime shows me that above error: ``` /usr/bin/env: node: No such file or directory ``` But I already have the binDir specified in CoffeeScript.sublime-settings: ``` "binDir": "/home/michael-heuberger/npm/bin/" ``` which is correct because of: ``` $ which coffee /home/michael-heuberger/npm/bin/coffee ``` And it's installed: ``` $ npm ls -g | grep coffee ├── coffee-script@1.9.3 └─┬ coffeelint@1.10.1 ├── coffee-script@1.9.3 ``` Using latest iojs here ``` $ iojs -v v2.2.1 ``` Any clues what's wrong?