summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryleo77 <ylep77@gmail.com>2013-05-17 17:48:06 +0800
committeryleo77 <ylep77@gmail.com>2013-05-17 17:48:06 +0800
commita9111488e4945a29b8afa9a4eab12ee2e6fc9a0e (patch)
treefe1f5d8027ebd609497e0ad2ed20142745958ccc
parent27c6becffde091cc55e0df70875451ca82867935 (diff)
downloadzsh-a9111488e4945a29b8afa9a4eab12ee2e6fc9a0e.tar.gz
zsh-a9111488e4945a29b8afa9a4eab12ee2e6fc9a0e.tar.bz2
zsh-a9111488e4945a29b8afa9a4eab12ee2e6fc9a0e.zip
add search by filename and file content feature
-rw-r--r--.gitignore5
-rw-r--r--custom/plugins/sfffe/sfffe.plugin.zsh28
2 files changed, 30 insertions, 3 deletions
diff --git a/.gitignore b/.gitignore
index 51a5ee6c3..5db11ce5c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,9 +1,8 @@
locals.zsh
log/.zsh_history
projects.zsh
-custom/*
-!custom/example
-!custom/example.zsh
+custom/example
+custom/example.zsh
*.swp
!custom/example.zshcache
cache/
diff --git a/custom/plugins/sfffe/sfffe.plugin.zsh b/custom/plugins/sfffe/sfffe.plugin.zsh
new file mode 100644
index 000000000..a0f034908
--- /dev/null
+++ b/custom/plugins/sfffe/sfffe.plugin.zsh
@@ -0,0 +1,28 @@
+# ------------------------------------------------------------------------------
+# FILE: sfffe.plugin.zsh
+# DESCRIPTION: search file for FE
+# AUTHOR: yleo77 (ylep77@gmail.com)
+# VERSION: 0.1
+# REQUIRE: ack
+# ------------------------------------------------------------------------------
+
+if [ ! -x $(which ack) ]; then
+ echo \'ack\' is not installed!
+ exit -1
+fi
+
+ajs() {
+ ack "$@" --type js
+}
+
+acss() {
+ ack "$@" --type css
+}
+
+fjs() {
+ find ./ -name "$@*" -type f | grep '\.js'
+}
+
+fcss() {
+ find ./ -name "$@*" -type f | grep '\.css'
+}