vladislav doster 1d09c6bb0a style: remove trailing whitespace (#12303) 8 tháng trước cách đây
..
README.md 1d09c6bb0a style: remove trailing whitespace (#12303) 8 tháng trước cách đây
_coffee 9f2bbebdf7 docs: fix some capitalization typos(#11293) 2 năm trước cách đây
coffee.plugin.zsh 9264d75d5d Fix typo. 9 năm trước cách đây

README.md

Coffeescript Plugin

This plugin provides aliases for quickly compiling and previewing your coffeescript code.

When writing Coffeescript it's very common to want to preview the output of a certain snippet of code, either because you want to test the output or because you'd like to execute it in a browser console which doesn't accept Coffeescript.

Preview the compiled result of your coffeescript with cf "code" as per the following:

$ cf 'if a then b else c'
if (a) {
  b;
} else {
  c;
}

Also provides the following aliases:

  • cfc: Copies the compiled JS to your clipboard. Very useful when you want

       to run the code in a JS console.
    
  • cfp: Compiles from your currently copied clipboard. Useful when you want

       to compile large/multi-line snippets
    
  • cfpc: Paste coffeescript from clipboard, compile to JS, then copy the

        the result back to clipboard.