-
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
Build Broken in Sublime Text Version 2.0.1 Build 2217 #9
Comments
This is also happening to me. |
For me, at least, it looks like Does this fix it? I don't know why that would fix it but apparently it works. |
I did try removing and reinstalling the package. That fixed the "Error parsing plist xml" issue. But I am still unable to run the build system. I am seeing a "Cakefile not found" error similar to Topher515's. |
It is assumed that your Currently the build system is using If I don't specify a working directory for the build system, then Sublime will default to the directory containing the file that is focused when you run the build system. The problem with that is it will also look for the So you need to put your Does this solve the issue? |
I added an empty
I've never had a |
It occurs to me now that I've probably been using this plugin incorrectly. The build system is meant to be used with a Cakefile. I just naively used the build system without knowing anything about cake. What the build did before recently is created a I will read up on cake and add a meaningful Cakefile to my project. For those of us who were using this plugin without a Cakefile, is it possible to restore this default behavior? |
That's all the build system does - it runs a Cake task which you would define in your task 'sbuild', ->
doStuff()
andThings() Typically this is where you would say concatenate your files, minify them, or whatever else building your project entails... which could be a myriad of things which is why it is done this way. I was fairly certain there was also a Compile File command that would compile the current file to CoffeeScript but it appears I was wrong about that. I'm guessing the reason no one has complained about it yet is because everyone uses the For the moment, you can use If you're interested, in an upcoming update you will be able to just use watch integration. |
This was supposed to exist but didn't for some reason, see #9.
Windows decided to hard crash so that took a little longer than expected. You can now use Pinging @topher515. |
@deweller By the way, |
Well would you look at that! It turns out that I would probably be amazed at the treasure trove of helpful information I might find if I read the documentation. Thanks for your help on this. |
Indeed, GitHub shows the documentation right there at the forefront for a reason. 😄 |
@Xavura, thanks for addressing this so quickly! When I use The behavior which I originally used out-of-the-box was: With the latest commit (fb04af1), the Is there a way to get this behavior back? I realize that having a proper |
You want Regarding |
Regarding your error, I think I know what the problem may be. I'll look into it, you're on Windows right? |
Regarding the Regarding the |
Good to hear and I see the problem now, I'll fix it in the next update. |
Great! Thanks! |
My install didn't seem to be broken as mentioned in the original post, however the symbol list wasn't indenting properly and it was displaying unnecessary symbols (console, Object, etc). When I installed the files directly from https://github.com/jashkenas/coffee-script-tmbundle it worked (once I moved around some files from their subdirectories). The problem can also be fixed if I install your plugin and then copy the "Symbol List*.tmPreferences" files from the "preferences" folder from jashkenas's repo straight into your plugin folder. Perhaps Sublime Text 2 added the need for these Symbol List files in the latest build? Looks like maybe you need to include them in your plugin? Thanks for your work on this plugin. |
It would still be very nice to use cmd-B without a cakefile, as it works with Less. It would be cool to simply remember one shortcut. Is there any easy way to achieve this? |
i modified
be careful with your path! default
|
Attempts to build any Coffeescript file using the Sublime Text build system results in the following error:
The text was updated successfully, but these errors were encountered: