summaryrefslogtreecommitdiff
path: root/plugins/coffee/coffee.plugin.zsh
blob: 96393f66de3ca1f071685eb5aad9b84c3df4c0ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/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)"'