my xfce4 dotfiles
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
298 B

3 years ago
  1. #!/bin/zsh
  2. # compile a string of coffeescript and print to output
  3. cf () {
  4. coffee -peb "$1"
  5. }
  6. # compile & copy to clipboard
  7. cfc () {
  8. cf "$1" | clipcopy
  9. }
  10. # compile from clipboard & print
  11. alias cfp='cf "$(clippaste)"'
  12. # compile from clipboard and copy to clipboard
  13. alias cfpc='cfp | clipcopy'