diff options
author | Marc Cornellà <marc.cornella@live.com> | 2018-10-07 22:57:16 +0200 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2018-10-07 23:01:25 +0200 |
commit | 3a6fa9149b7a3db89d22f40ae371ad636f5ed527 (patch) | |
tree | dff5d81b485b35e5e53a51f8615832016a5b393a /themes/fino.zsh-theme | |
parent | ab9d92f66594f1eb20fbd3b067d4d4640cf0da1f (diff) | |
download | zsh-3a6fa9149b7a3db89d22f40ae371ad636f5ed527.tar.gz zsh-3a6fa9149b7a3db89d22f40ae371ad636f5ed527.tar.bz2 zsh-3a6fa9149b7a3db89d22f40ae371ad636f5ed527.zip |
Fix tilde substitution in theme prompts
These themes used an adhoc substitution of $HOME for tilde
in $PWD, but it's better to use '%~' and is less error prone.
See #7160
Diffstat (limited to 'themes/fino.zsh-theme')
-rw-r--r-- | themes/fino.zsh-theme | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/themes/fino.zsh-theme b/themes/fino.zsh-theme index 71ed6bbbc..28d6cc2ec 100644 --- a/themes/fino.zsh-theme +++ b/themes/fino.zsh-theme @@ -29,12 +29,11 @@ else fi fi -local current_dir='${PWD/#$HOME/~}' local git_info='$(git_prompt_info)' local prompt_char='$(prompt_char)' -PROMPT="╭─%{$FG[040]%}%n%{$reset_color%} %{$FG[239]%}at%{$reset_color%} %{$FG[033]%}$(box_name)%{$reset_color%} %{$FG[239]%}in%{$reset_color%} %{$terminfo[bold]$FG[226]%}${current_dir}%{$reset_color%}${git_info} %{$FG[239]%}${ruby_env} +PROMPT="╭─%{$FG[040]%}%n%{$reset_color%} %{$FG[239]%}at%{$reset_color%} %{$FG[033]%}$(box_name)%{$reset_color%} %{$FG[239]%}in%{$reset_color%} %{$terminfo[bold]$FG[226]%}%~%{$reset_color%}${git_info} %{$FG[239]%}${ruby_env} ╰─${prompt_char}%{$reset_color%} " ZSH_THEME_GIT_PROMPT_PREFIX=" %{$FG[239]%}on%{$reset_color%} %{$fg[255]%}" |