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.

28 lines
591 B

3 years ago
  1. # ------------------------------------------------------------------------------
  2. # FILE: sfffe.plugin.zsh
  3. # DESCRIPTION: search file for FE
  4. # AUTHOR: yleo77 ([email protected])
  5. # VERSION: 0.1
  6. # REQUIRE: ack
  7. # ------------------------------------------------------------------------------
  8. if (( ! $+commands[ack] )); then
  9. echo "'ack' is not installed!"
  10. return
  11. fi
  12. ajs() {
  13. ack "$@" --type js
  14. }
  15. acss() {
  16. ack "$@" --type css
  17. }
  18. fjs() {
  19. find ./ -name "$@*" -type f | grep '\.js'
  20. }
  21. fcss() {
  22. find ./ -name "$@*" -type f | grep '\.css'
  23. }