X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=etc%2Fzsh%2Fzshrc;h=baa58905a6ac7d28a4358474f0420f8425a6ce77;hb=a1cd3b6fb0975ea28dee76ec9a8133f78e88133c;hp=addc8e6fbfc1135eabc32a90760dba20e84af4ed;hpb=e7c0b2d9bc977f2765a4d11309d7304e56c56428;p=grml-etc-core.git diff --git a/etc/zsh/zshrc b/etc/zsh/zshrc index addc8e6..baa5890 100644 --- a/etc/zsh/zshrc +++ b/etc/zsh/zshrc @@ -3,7 +3,7 @@ # Authors: grml-team (grml.org), (c) Michael Prokop # Bug-Reports: see http://grml.org/bugs/ # License: This file is licensed under the GPL v2. -# Latest change: Don Nov 30 16:15:06 CET 2006 [mika] +# Latest change: Son Dez 17 13:52:04 CET 2006 [mika] ################################################################################ # This file is sourced only for interactive shells. It # should contain commands to set up aliases, functions, @@ -239,8 +239,8 @@ fi autoload run-help # use via 'esc-h' # completion system - if autoload -U compinit && [ -f "/usr/share/zsh/$ZSH_VERSION/functions/Completion/compinit" ] && compinit 2>/dev/null ; then - compinit + if autoload -U compinit && compinit 2>/dev/null ; then + compinit 2>/dev/null || print 'Notice: no compinit available :(' else print 'Notice: no compinit available :(' function zstyle { } @@ -250,7 +250,7 @@ fi is4 && autoload -U zed # use ZLE editor to edit a file or function is4 && for mod in complist deltochar mathfunc ; do - zmodload -i zsh/${mod} + zmodload -i zsh/${mod} 2>/dev/null || print "Notice: no ${mod} available :(" done # autoload zsh modules when they are referenced @@ -379,7 +379,11 @@ fi # "cd -" won't work after login by just setting $OLDPWD, so cd $dirstack[0] && cd $OLDPWD fi - chpwd() { dirs -pl >! ~/.zdirs } + # notice: we have to make sure 'dirs' is not a function/alias, otherwise + # zsh might hang of course + chpwd() { + alias dirs &>/dev/null || functions dirs &>/dev/null || dirs -pl >! ~/.zdirs + } # }}} # {{{ display battery status on right side of prompt via running 'BATTERY=1 zsh'