# HG changeset patch # User Dirk Olmes # Date 1393919715 -3600 # Node ID 9fa883dc39e06d86ade17d8b7e7312b5cc14efdf # Parent fa52868da3d4c4594febd279b73950c41925ece3 remove the ll alias right here, where the other aliases are removed, too diff -r fa52868da3d4 -r 9fa883dc39e0 zshrc --- a/zshrc Tue Mar 04 08:54:43 2014 +0100 +++ b/zshrc Tue Mar 04 08:55:15 2014 +0100 @@ -11,6 +11,9 @@ fi # get rid of some unwanted aliases from the oh-my-zsh env +if [ "`alias | grep 'll='`" != "" ]; then + unalias ll +fi if [ "`alias | grep 'l='`" != "" ]; then unalias l fi @@ -46,7 +49,8 @@ unsetopt correct_all # utility function that is used by various other modules -removeFromPath() { +removeFromPath() +{ search_term="$1" split_path=(${(s/:/)PATH}) clean_path=""