summaryrefslogtreecommitdiff
path: root/.bashrc.files/functions
diff options
context:
space:
mode:
Diffstat (limited to '.bashrc.files/functions')
-rw-r--r--.bashrc.files/functions6
1 files changed, 0 insertions, 6 deletions
diff --git a/.bashrc.files/functions b/.bashrc.files/functions
deleted file mode 100644
index fbab13d..0000000
--- a/.bashrc.files/functions
+++ /dev/null
@@ -1,6 +0,0 @@
-function vimgrep()
-{
- if [ -z $1 ]; then echo -e "vimgrep PATTERN PATH"; return 1; fi
- if [ -z $2 ]; then echo -e "vimgrep PATTERN PATH"; return 1; fi
- \grep -IRn $1 $2 | vim -
-}