mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 00:10:08 +00:00
Add coffeescript aliases: cf, cfc, cfp
cf: compile and show output cfc: compile & copy cfp: compile from pasteboard & print
This commit is contained in:
parent
ff4663a6b8
commit
8e8cdc0502
1 changed files with 13 additions and 0 deletions
13
plugins/coffee/coffee.plugin.zsh
Normal file
13
plugins/coffee/coffee.plugin.zsh
Normal file
|
@ -0,0 +1,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)"'
|
Loading…
Reference in a new issue