From: martin f. krafft Date: Wed, 14 May 2008 12:33:47 +0000 (+0100) Subject: fix expansion of prompt prefix X-Git-Url: https://git.madduck.net/etc/zsh.git/commitdiff_plain/61f315793f3fcd7d22456d2a0057efbf88191fda fix expansion of prompt prefix --- diff --git a/.zsh/zshrc/60_vcsprompt b/.zsh/zshrc/60_vcsprompt index e61ce50..f9c440b 100644 --- a/.zsh/zshrc/60_vcsprompt +++ b/.zsh/zshrc/60_vcsprompt @@ -84,7 +84,7 @@ __vcs_get_prompt_path_components() # shortcut: if there are no arguments, return a default prompt if [ -z "${1:-}" ]; then - pwdnamed="${(%):-'%${_PROMPT_PATH_MAXLEN}<..<%~%<<'}" + pwdnamed="${(%):-%${_PROMPT_PATH_MAXLEN}<..<%~%<<}" echo "$pwdnamed" return fi @@ -113,7 +113,7 @@ __vcs_get_prompt_path_components() precomps=$(($#apwdnamed - $postcomps)) local postfix - (( $postcomps > 0 )) && postfix="${(%):-'%${postcomps}~'}" + (( $postcomps > 0 )) && postfix="${(%):-%${postcomps}~}" # we don't want the prompt to get too long, so keep the total prompt length # under $_PROMPT_PATH_MAXLEN (25), but ensure that the prefix is not shorter @@ -122,7 +122,7 @@ __vcs_get_prompt_path_components() prelen=$((${_PROMPT_PATH_MAXLEN:-25} - $#branch - $#postfix)) minlen=${_PROMPT_PATH_MINLEN:-10} (( $prelen < $minlen )) && prelen=$minlen - prefix="${(%):-'%${prelen}<..<%-${precomps}~%<<'}" + prefix="${(%):-%${prelen}<..<%-${precomps}~%<<}" echo "'$prefix'" "'$branch'" "'$postfix'" }