From 8bcece5895861c06b115b80d5ebe0ca41f5d71cc Mon Sep 17 00:00:00 2001 From: Sorin Ionescu Date: Sat, 14 Apr 2012 20:22:59 -0400 Subject: [PATCH] [#145] Load the alias module in the utility module Functions cdll, pushdll, and popdll depend on the ll alias. --- modules/utility/init.zsh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/utility/init.zsh b/modules/utility/init.zsh index a3da077..1e20087 100644 --- a/modules/utility/init.zsh +++ b/modules/utility/init.zsh @@ -7,6 +7,9 @@ # Sorin Ionescu # +# Load dependencies. +omodload 'alias' + # Serves a directory via HTTP. alias http-serve='python -m SimpleHTTPServer'