X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=etc%2Fzsh%2Fzshenv;h=bf6c81900a7c8682b0c9e8fd187515d3b76404e9;hb=7d3c439ba4e7afa0537baf3f41bf7a38b326e0b1;hp=97a041ce976149f065e36d53d7d832c086c61d17;hpb=fab8bcc2d42a8202856a8ff1e1b5b21c596c51f8;p=grml-etc-core.git diff --git a/etc/zsh/zshenv b/etc/zsh/zshenv index 97a041c..bf6c819 100644 --- a/etc/zsh/zshenv +++ b/etc/zsh/zshenv @@ -3,7 +3,6 @@ # 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: Sam Mai 17 22:59:29 CEST 2008 [mika] ################################################################################ # This file is sourced on all invocations of the shell. # It is the 1st file zsh reads; it's read for every shell, @@ -80,11 +79,14 @@ esac # less (:=pager) options: # export LESS=C -if [[ -x /usr/bin/lesspipe.sh ]] ; then - export LESSOPEN="|lesspipe.sh %s" -elif [[ -x /usr/bin/lesspipe ]] ; then +typeset -a lp; lp=( ${^path}/lesspipe(N) ) +if (( $#lp > 0 )) && [[ -x $lp[1] ]] ; then export LESSOPEN="|lesspipe %s" +elif [[ -x /usr/bin/lesspipe.sh ]] ; then + export LESSOPEN="|lesspipe.sh %s" fi +unset lp + export READNULLCMD=${PAGER:-/usr/bin/pager} # allow zeroconf for distcc