Blame view
plugins/coffee/coffee.plugin.zsh
296 Bytes
|
238d8e65a
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
#!/bin/zsh
# compile a string of coffeescript and print to output
cf () {
coffee -peb $1
}
# compile & copy to clipboard
cfc () {
cf $1 | pbcopy
}
# compile from pasteboard & print
alias cfp='coffeeMe "$(pbpaste)"'
# compile from pasteboard and copy to clipboard
alias cfpc='cfp | pbcopy'
|