oh-my-zsh/plugins/coffee/coffee.plugin.zsh
Cooper Maruyama 8e8cdc0502 Add coffeescript aliases: cf, cfc, cfp
cf: compile and show output
cfc: compile & copy
cfp: compile from pasteboard & print
2015-05-01 01:34:20 -07:00

14 lines
234 B
Bash

#!/bin/zsh
# compile a string of coffeescript and print to output
cf () {
coffee -peb $1
}
# compile & copy to clipboard
cfc () {
cf $1 | tail -n +2 | pbcopy
}
# compile from pasteboard & print
alias cfp='coffeeMe "$(pbpaste)"'