From e90467804519d49d6f64340b9918324044ac21e0 Mon Sep 17 00:00:00 2001 From: Simon Gomizelj Date: Mon, 12 Dec 2011 02:25:30 -0500 Subject: [PATCH] Remove auto update / uninstall functions. --- lib/functions.zsh | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/lib/functions.zsh b/lib/functions.zsh index ef7cc6383..c6698f1c1 100644 --- a/lib/functions.zsh +++ b/lib/functions.zsh @@ -1,17 +1,3 @@ function zsh_stats() { history | awk '{print $2}' | sort | uniq -c | sort -rn | head } - -function uninstall_oh_my_zsh() { - /bin/sh $ZSH/tools/uninstall.sh -} - -function upgrade_oh_my_zsh() { - /bin/sh $ZSH/tools/upgrade.sh -} - -function take() { - mkdir -p $1 - cd $1 -} -