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.

21 lines
420 B

3 years ago
  1. alias bbpb='pbpaste | bbedit --clean --view-top'
  2. alias bbd=bbdiff
  3. #
  4. # If the bb command is called without an argument, launch BBEdit
  5. # If bb is passed a directory, cd to it and open it in BBEdit
  6. # If bb is passed a file, open it in BBEdit
  7. #
  8. function bb() {
  9. if [[ -z "$1" ]]
  10. then
  11. bbedit --launch
  12. else
  13. bbedit "$1"
  14. if [[ -d "$1" ]]
  15. then
  16. cd "$1"
  17. fi
  18. fi
  19. }