oh-my-zsh/plugins/coffee/coffee.plugin.zsh

17 lines
296 B
Bash
Raw Normal View History

#!/bin/zsh
# compile a string of coffeescript and print to output
cf () {
coffee -peb $1
}
# compile & copy to clipboard
cfc () {
2015-05-01 08:37:55 +00:00
cf $1 | pbcopy
}
# compile from pasteboard & print
alias cfp='coffeeMe "$(pbpaste)"'
# compile from pasteboard and copy to clipboard
alias cfpc='cfp | pbcopy'