The unified diff between revisions [65660357..] and [32477290..] is displayed below. It can also be downloaded as a raw diff.

#
#
# patch ".zshfunctions"
#  from [fd4f359bc31fc1ee5d5615882f6bd01c0ce47372]
#    to [e12226134883925d6b73f8322a86c96d857e0c0e]
#
============================================================
--- .zshfunctions	fd4f359bc31fc1ee5d5615882f6bd01c0ce47372
+++ .zshfunctions	e12226134883925d6b73f8322a86c96d857e0c0e
@@ -102,3 +102,9 @@ histoff()
        HISTFILE=/dev/null
 }

+sgrep()
+{
+	find .  -type f -and -not -wholename '*/.svn/*' -exec grep "$*" {} /dev/null \;
+}
+
+