CoffeeScript is a programming language that transcompiles to JavaScript. It compiles predictably to JavaScript and programs can be written with less code, with no effect on runtime performance.
1
vote
0answers
47 views
Ideas for task automation [closed]
I'm looking for a better way (my current way: manual labour) to automate my tasks after I'm done with developing my Wordpress themes.
The tasks I need to perform are:
Copy
Rename
Compress (.zip)
...
1
vote
1answer
129 views
History and completion not working in coffeescript repl on linux mint
I have recently switched from Ubuntu 12.04 to Linux Mint 14. One thing that is mysteriously not working is autocompletion (tab) and history (uparrow) in coffeescript repl (coffee command). Instead of ...
0
votes
1answer
185 views
set file type in vim according to the hashbang line
In vim, how can I set the file type not only according to the extension, but according to the #! line at the beginning? For instance, I would like vim to recognize files as coffee-script files when ...
0
votes
1answer
571 views
Best method for CoffeeScript / LESS autocompilation?
I've been using LESS and CoffeeScript substantially lately, and wondering what would be the best method of monitoring. Currently I use LESS.app, which works great, but I don't think there's a solution ...
2
votes
1answer
734 views
How can I run 2 watch commands simultaneously for coffeescript?
I'd like to run the following commands in parallel with 1 shell script.
coffee -wc lib/
coffee -wcb public/
Currently, I have to press ctrl+c to cancel out of the first one before the second line ...