From 51439bdcaa348b2e8482bef5e15640b16e7e0dd0 Mon Sep 17 00:00:00 2001 From: Sorin Ionescu Date: Thu, 12 Apr 2012 10:33:38 -0400 Subject: [PATCH] Remove the reload utility function The reload function no longer works since loaded modules cannot be reloaded. --- modules/utility/functions/reload | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 modules/utility/functions/reload diff --git a/modules/utility/functions/reload b/modules/utility/functions/reload deleted file mode 100644 index bf84916..0000000 --- a/modules/utility/functions/reload +++ /dev/null @@ -1,14 +0,0 @@ -# -# Reloads the Zsh configuration. -# -# Authors: -# Sorin Ionescu -# - -# Reloads ~/.zshrc. -local zshrc="$HOME/.zshrc" -if [[ -n "$1" ]]; then - zshrc="$1" -fi -source "$zshrc" -