diff options
author | romkatv <roman.perepelitsa@gmail.com> | 2019-07-30 07:18:54 +0300 |
---|---|---|
committer | romkatv <roman.perepelitsa@gmail.com> | 2019-07-30 07:18:54 +0300 |
commit | da7d98633388d0fbf463460eeeaf387514119a2f (patch) | |
tree | d9803f188f5c73572eff0b76b02edf8ff6e210b1 /internal/wizard.zsh | |
parent | 224b62fbe49c3069b8626ac07d3165045903ab19 (diff) |
avoid printing grey text without knowing it's visible on the user's background
Diffstat (limited to 'internal/wizard.zsh')
-rwxr-xr-x | internal/wizard.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/wizard.zsh b/internal/wizard.zsh index 13093186..d11f3499 100755 --- a/internal/wizard.zsh +++ b/internal/wizard.zsh @@ -821,7 +821,7 @@ function write_zshrc() { print -P "" print -P "The following lines have been appended to %4F$__p9k_zshrc_u%f:" print -P "" - print -lP -- ' %240F'${^comments}'%f' " %2Fsource%f $__p9k_cfg_path_u" + print -lP -- ' '${^comments} " %2Fsource%f %B$__p9k_cfg_path_u%b" } _p9k_can_configure || return |