]> src.twobees.de Git - dotfiles.git/blobdiff - stow/oh-my-zsh/.oh-my-zsh/plugins/sfffe/sfffe.plugin.zsh
rm oh-my-zsh
[dotfiles.git] / stow / oh-my-zsh / .oh-my-zsh / plugins / sfffe / sfffe.plugin.zsh
diff --git a/stow/oh-my-zsh/.oh-my-zsh/plugins/sfffe/sfffe.plugin.zsh b/stow/oh-my-zsh/.oh-my-zsh/plugins/sfffe/sfffe.plugin.zsh
deleted file mode 100644 (file)
index 177e5fa..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-# ------------------------------------------------------------------------------
-#          FILE:  sfffe.plugin.zsh
-#   DESCRIPTION:  search file for FE
-#        AUTHOR:  yleo77 (ylep77@gmail.com)
-#       VERSION:  0.1
-#       REQUIRE:  ack
-# ------------------------------------------------------------------------------
-
-if (( ! $+commands[ack] )); then
-    echo "'ack' is not installed!"
-    return
-fi
-
-ajs() {
-    ack "$@" --type js
-}
-
-acss() {
-    ack "$@" --type css
-}
-
-fjs() {
-    find ./ -name "$@*" -type f | grep '\.js'
-}
-
-fcss() {
-    find ./ -name "$@*" -type f | grep '\.css'
-}