From: martin f. krafft Date: Thu, 8 Mar 2018 09:19:48 +0000 (+0400) Subject: allow %# to be replaced with psvar[4] if set X-Git-Url: https://git.madduck.net/etc/zsh.git/commitdiff_plain/c0129fde26e3d2e6caced774d4a457a905b32d63 allow %# to be replaced with psvar[4] if set --- diff --git a/.zsh/themes/prompt_madduck_setup b/.zsh/themes/prompt_madduck_setup index 3f0f3e5..c9a04bc 100644 --- a/.zsh/themes/prompt_madduck_setup +++ b/.zsh/themes/prompt_madduck_setup @@ -338,10 +338,11 @@ function make_ps1() { # now comes the working directory, composed from parts in $psvar, # which is managed by $ZDOTDIR/zshrc/06-vcsprompt - echo -n '%1v%(2v.|%B%2v%b|.)%(3v.%3v.)' + echo -n '%1v%(2V.|%B%2v%b|.)%(3V.%3v.)' - # and we finish with #/% for root/non-root, and a space - echo -n '%# ' + # and we finish with #/% for root/non-root, unless psvar[4] is set, and + # a space + echo -n "%(4V.%4v.%#) " echo } PS1=$(make_ps1)