Mercurial > hg > zsh-env
changeset 19:f5c6324fc952
remove aliases only if they exist
author | Dirk Olmes <dirk@xanthippe.ping.de> |
---|---|
date | Thu, 26 Jan 2012 16:32:35 +0100 |
parents | e8f909f0fb6f |
children | e13dca4c3fb6 |
files | zshrc zshrc-gentoo |
diffstat | 2 files changed, 9 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/zshrc Tue Jan 10 04:24:43 2012 +0100 +++ b/zshrc Thu Jan 26 16:32:35 2012 +0100 @@ -11,8 +11,12 @@ fi # get rid of some unwanted aliases from the oh-my-zsh env -unalias l -unalias lsa +if [ "`alias | grep 'l='`" != "" ]; then + unalias l +fi +if [ "`alias | grep 'lsa='`" != "" ]; then + unalias lsa +fi # custom function that should work on all platforms cd() { builtin cd "$@"; print -D $PWD; }
--- a/zshrc-gentoo Tue Jan 10 04:24:43 2012 +0100 +++ b/zshrc-gentoo Thu Jan 26 16:32:35 2012 +0100 @@ -19,7 +19,9 @@ # custom functions for gentoo kcs() { source $HOME/.keychain/${HOST}-sh } -unalias ll +if [ "`alias | grep 'll='`" != "" ]; then + unalias ll +fi ll() { /usr/bin/env -u LC_ALL LANG=C ls -laFh "$@" | more } lr() { /usr/bin/env -u LC_ALL LANG=C ls -rtlh "$@" }