| ⌘T | go to file |
| ⌘⌃P | go to project |
| ⌘R | go to methods |
| ⌃G | go to line |
| ⌘KB | toggle side bar |
| ⌘⇧P | command prompt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| icons = | |
| preview: "Print Preview" | |
| edit: "Edit Question" | |
| comment: "Comment" | |
| trash: "Delete" | |
| for icon, text of icons | |
| $(this.el).find(".#{icon}-image").tooltip | |
| title: text |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Initialize the taskk api. With your api token. Get yours at https://api.taskk.it | |
| taskk_api = new TaskkAPI('token') | |
| # Test your API key with the ping method | |
| ping = taskk_api.ping() | |
| # define what to do on success. Should say "pong" if you have a valid key. | |
| ping.success (data) -> alert(JSON.stringify(data)) | |
| # define what to do on error |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| mkdir -p ~/Library/Application\ Support/Sublime\ Text\ 2/Packages/CoffeeScript | |
| cd ~/Library/Application\ Support/Sublime\ Text\ 2/Packages/CoffeeScript | |
| curl -O https://raw.github.com/jashkenas/coffee-script-tmbundle/master/Syntaxes/CoffeeScript.tmLanguage | |
| curl -O https://raw.github.com/jashkenas/coffee-script-tmbundle/master/Preferences/CoffeeScript.tmPreferences |