-
Notifications
You must be signed in to change notification settings - Fork 71
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
None of the plugin commands work #15
Comments
Really sounds like some form of PATH problem to me, I'll look into it but it works for most people including me and I'm on OS X 10.8.1. I believe I installed npm and node the same way. I'll look into it. |
Hi! @Xavura |
@dangerbell This isn't the first time someone has had problems with paths so I'll look into improving this. @kdavh Display what exactly in the status bar? It's possible, I'm sure some things use the status bar already. You should open another issue. :) |
I had the same problem. I solved it by putting both paths (coffee's and node's) on my
Note that the paths are separated by a colon symbol (" |
I am running node 0.10.1 with npm 1.2.15 and it installs coffee to /usr/local/share/npm/bin. So this worked for me: |
Adding both the location of the |
It looks like Node installs a link "node" in /usr/local/bin which is the default for "binDir" in Packages/CoffeeScript/CoffeeScript.sublime-settings. CoffeeScript does not create a link there. I opted to follow kdavh's advice above to create a symbolic link: "ln -s /Users/me/.npm/coffee-script/1.6.3/package/bin/coffee /usr/local/bin/coffee" and it worked like a charm. |
I cannot get any of the commands for this plugin to work. Any time I try to do something like check syntax (Alt+Shift+S) nothing happens and I get this line in the status bar:
"Syntax env: node: No such file or directory"
I'm on OS X 10.8.1
I assumed this was a path problem, but the Sublime path and my system path match:
In the command line:
So 'node' should be on the path.
I had a similar problem with not being able to find 'coffee', but I was able to resolve that after finding 'binDir' in 'CoffeeScript.sublime-settings'. It defaults to '/usr/local/bin' while the directory 'coffee' is in is '/usr/local/share/npm/bin'.
I installed 'coffee' the recommended way:
npm install -g coffee-script
And I installed 'node' with:
brew install node
The text was updated successfully, but these errors were encountered: