diff options
author | Roman Perepelitsa <roman.perepelitsa@gmail.com> | 2021-10-27 17:31:33 +0300 |
---|---|---|
committer | Roman Perepelitsa <roman.perepelitsa@gmail.com> | 2021-10-27 17:31:33 +0300 |
commit | 85e31542dd8cf902afd564846adfef7c8187350d (patch) | |
tree | b3f6d4d17abe425fa24d1939265916a74020ca5d /internal | |
parent | 99edd12e00b8c1a38635a28eb33d6454c1ba09b2 (diff) |
wizard: underline paths instead of bolding in the success message
Diffstat (limited to 'internal')
-rw-r--r-- | internal/wizard.zsh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/internal/wizard.zsh b/internal/wizard.zsh index 9dbfe81d..9fcb36e3 100644 --- a/internal/wizard.zsh +++ b/internal/wizard.zsh @@ -2093,12 +2093,12 @@ restore_screen if (( !in_z4h_wizard )); then print - flowing +c New config: "%B${__p9k_cfg_path_u//\\/\\\\}%b." + flowing +c New config: "%U${__p9k_cfg_path_u//\\/\\\\}%u." if [[ -n $config_backup ]]; then - flowing +c Backup of the old config: "%B${config_backup_u//\\/\\\\}%b." + flowing +c Backup of the old config: "%U${config_backup_u//\\/\\\\}%u." fi if [[ -n $zshrc_backup ]]; then - flowing +c Backup of "%B${__p9k_zshrc_u//\\/\\\\}%b:" "%B${zshrc_backup_u//\\/\\\\}%b." + flowing +c Backup of "%U${__p9k_zshrc_u//\\/\\\\}%u:" "%U${zshrc_backup_u//\\/\\\\}%u." fi fi |