From a096c58879bbeed296a77af0ba31e5da711e223e Mon Sep 17 00:00:00 2001 From: Michael Prokop Date: Sun, 22 Apr 2007 00:13:34 +0200 Subject: [PATCH] /etc/zsh/zshrc: use transient_rprompt only with zsh version 4 --- etc/zsh/zshrc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/etc/zsh/zshrc b/etc/zsh/zshrc index 755b599..03c27d1 100644 --- a/etc/zsh/zshrc +++ b/etc/zsh/zshrc @@ -443,7 +443,9 @@ fi # precmd () { setopt promptsubst; [[ -o interactive ]] && jobs -l; - setopt transient_rprompt # make sure to use right prompt only when not running a command + # make sure to use right prompt only when not running a command + is4 && setopt transient_rprompt + is4 && [[ -z $NOPRECMD ]] && precmd () { [[ -n $NOPRECMD ]] && return 0 # allow manual overwriting of RPROMPT @@ -1027,7 +1029,7 @@ If you want to use xinit anyway please call \"/usr/bin/xinit\"." } _dchange() { _files -W /usr/share/doc -/ } compdef _dchange dchange - + # use "uchange " to view upstream's changelog of the package: uchange() { if [ -r /usr/share/doc/${1}/changelog.gz ] ; then -- 2.1.4