1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2025-12-30 15:14:44 +01:00
Files
oh-my-zsh/plugins/coffee/coffee.plugin.zsh
Cooper Maruyama a315ddc075 typofix
2015-05-01 01:37:55 -07:00

14 lines
221 B
Bash

#!/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)"'