JS2Coffee
No description provided
Details
Installs
- Total 5K
- Win 1K
- Mac 3K
- Linux 1K
Feb 20 | Feb 19 | Feb 18 | Feb 17 | Feb 16 | Feb 15 | Feb 14 | Feb 13 | Feb 12 | Feb 11 | Feb 10 | Feb 9 | Feb 8 | Feb 7 | Feb 6 | Feb 5 | Feb 4 | Feb 3 | Feb 2 | Feb 1 | Jan 31 | Jan 30 | Jan 29 | Jan 28 | Jan 27 | Jan 26 | Jan 25 | Jan 24 | Jan 23 | Jan 22 | Jan 21 | Jan 20 | Jan 19 | Jan 18 | Jan 17 | Jan 16 | Jan 15 | Jan 14 | Jan 13 | Jan 12 | Jan 11 | Jan 10 | Jan 9 | Jan 8 | Jan 7 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
Sublime JS2Coffee
A quick way to convert Javascript to Coffeescript without leaving Sublime Text 3.
Installation
- Install node and npm (js2coffee requires these)
- Install js2coffee and coffee-script:
npm install -g js2coffee coffee-script
(the actual converter) - Install the CoffeeScript Sublime Plugin for syntax highlighting
then, either
- Install Package Control if you don't already have it.
cmd-shift-p
Package Control: Install Package -> JS2Coffee
or
- Clone this repo into your
Packages
directory (Not Recommended: cloning will not allow you to update automatically).
Usage
cmd-shift-p
JS2Coffee:
The syntax will be automatically set to CoffeeScript, and either the current file will be replaced with the CoffeeScript convertion, or a new file will be opened containing the conversion (depending on the command you used).
Settings
{
"js2coffee_path": "/usr/local/bin/node /usr/local/bin/js2coffee",
"coffee_syntax_path": "Packages/Better CoffeeScript/CoffeeScript.tmLanguage"
}
Bind a Key Combination
Note: Out of courtesy, there is no keyboard shortcut set by default.
In Packages/User/Default (
your OS).sublime-keymap
add one of the following lines:
{ "keys": ["ctrl+shift+j"], "command": "js_coffee", "args":{"new_file": true}}
or
{ "keys": ["ctrl+shift+j"], "command": "js_coffee", "args":{"new_file": false}}
Troubleshooting
If js2coffee
outputs an error message it will show up in Sublime Text's console. There is not always useful context information in these messages, so YMMV.