diff options
author | Elias Fröhner <api-walker@users.noreply.github.com> | 2017-03-30 20:46:25 +0200 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2017-03-30 20:46:25 +0200 |
commit | b4b55fa502af7b545d04045474d1550d57274c42 (patch) | |
tree | 321a8a08ed0929fb963ed8b430d2aaf3ca9f006d /themes | |
parent | 237bbe3718309e41b151e4a2501660f98dc0b80e (diff) | |
download | zsh-b4b55fa502af7b545d04045474d1550d57274c42.tar.gz zsh-b4b55fa502af7b545d04045474d1550d57274c42.tar.bz2 zsh-b4b55fa502af7b545d04045474d1550d57274c42.zip |
Remove wrong whitespace in bira theme (#5985)
The whitespace in line 13 creates a double whitespace when combined with line 24. Therefore 2 whitespaces appear between ${user_host} and ${current_dir}.
Diffstat (limited to 'themes')
-rw-r--r-- | themes/bira.zsh-theme | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/themes/bira.zsh-theme b/themes/bira.zsh-theme index 4b2853c32..29bda0be8 100644 --- a/themes/bira.zsh-theme +++ b/themes/bira.zsh-theme @@ -10,7 +10,7 @@ else local user_symbol='$' fi -local current_dir='%{$terminfo[bold]$fg[blue]%} %~%{$reset_color%}' +local current_dir='%{$terminfo[bold]$fg[blue]%}%~%{$reset_color%}' local rvm_ruby='' if which rvm-prompt &> /dev/null; then rvm_ruby='%{$fg[red]%}‹$(rvm-prompt i v g)›%{$reset_color%}' |