Git Product home page Git Product logo

Comments (3)

Xavura avatar Xavura commented on August 25, 2024

Hey Jeremy.

As much as I would love to work on this plugin... honestly I've just been suffering from burn out for quite a long time now, so perhaps it's better that I pass it on to someone else. I think the plugin deserves more and so I think it would probably be better if you maintained it.

For the moment though can you send a pull request? I'd like to see if I can get back into the swing of things. I had a few ideas in mind (like the watch mode stuff) which I actually had implemented locally a long time ago.

Thank you for creating CoffeeScript anyway!

from coffeescript-sublime-plugin.

aponxi avatar aponxi commented on August 25, 2024

@Xavura I would love to continue the project, I have already branched myself out and added your brilliant idea of making a watch mode. If you think you would like to transfer the project let me know :) here is my repo

from coffeescript-sublime-plugin.

davew252 avatar davew252 commented on August 25, 2024

OK, so... who's it gonna be, guys? Who am I goin' home with tonite?
CS v1.6.1 is broken. See jashkenas/coffeescript#2828
Here is my workaround:
In C:/Users/Dave/AppData/Roaming/Sublime Text 2/Packages/CoffeeScript/CoffeeScript.py

Old code: Line 69...

args = ['-c', self.view.file_name()]
if no_wrapper:
    args = ['-b'] + args
print "In CompileCommand > args => " + str(args)
result = run("coffee", args=args)

New code:

filename = path.basename(self.view.file_name())
dirname = path.dirname(self.view.file_name())
args = ['-c', filename]
if no_wrapper:
    args = ['-b'] + args
print "In CompileCommand > args => " + str(args)
result = run("coffee", args=args, cwd = dirname)

I'm not a GitHub-ista. Yet. But if you guys figure out who's gonna be the official repo/maintainer, I can fork and do a pull request.
Let me know...

from coffeescript-sublime-plugin.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.