• Cooper Maruyama's avatar
    Fix typo. · 9264d75d
    Cooper Maruyama authored
    * `cfp` alias was referencing an old version of the `cf` command which
    no longer exists. This has been updated to reference a valid command.
    9264d75d
coffee.plugin.zsh 298 Bytes
#!/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='cf "$(clippaste)"'

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