summaryrefslogtreecommitdiff
path: root/plugins/coffee/coffee.plugin.zsh
blob: 77cb663f7b62f1272e51e881f703f5f7c259f666 (plain)
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" | clipcopy
}

# compile from clipboard & print
alias cfp='coffeeMe "$(clippaste)"'

# compile from clipboard and copy to clipboard
alias cfpc='cfp | clipcopy'