Remove fish special grep config

Not needed since I use bash as a default shell and enter
fish manually.
This commit is contained in:
syl20bnr 2014-08-31 12:56:58 -04:00
parent 03167a1bd5
commit ab6956331f

View file

@ -1,10 +0,0 @@
(use-package grep
:init
(progn
;; add fish shell compatibility with grep command
(defadvice grep-compute-defaults
(after grep-default-fish-compatibility)
(grep-apply-setting 'grep-find-command "find . ! -name \"*~\" ! -name \"#*#\" -type f -print0 | xargs -0 -e grep -nH -e ")
(grep-apply-setting 'grep-find-template (replace-regexp-in-string "\s{\}\s" " \"{}\" " grep-find-template)))
(ad-activate 'grep-compute-defaults)))