diff options
author | Ben Hilburn <bhilburn@gmail.com> | 2016-01-08 00:28:00 +0300 |
---|---|---|
committer | Ben Hilburn <bhilburn@gmail.com> | 2016-01-08 00:28:00 +0300 |
commit | c84da5e744db960a17c09485720ff1c094b1f6e8 (patch) | |
tree | 41e6956919c5ddd64c527ca8941051c06661b0c6 | |
parent | bb7fca653b522708eb2bb68e18f1e1d5e68d242f (diff) | |
parent | b9cb32f4a7cacc16fb0ab039a5fa91f6dd4b8d9d (diff) |
Merge pull request #178 from dritter/vcs_tag_whitespace
Removed whitespace before git tag
-rw-r--r-- | functions/vcs.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/functions/vcs.zsh b/functions/vcs.zsh index 49dccc18..4a0a7ead 100644 --- a/functions/vcs.zsh +++ b/functions/vcs.zsh @@ -52,7 +52,7 @@ function +vi-git-tagname() { local tag tag=$(git describe --tags --exact-match HEAD 2>/dev/null) - [[ -n "${tag}" ]] && hook_com[branch]=" %F{$POWERLEVEL9K_VCS_FOREGROUND}$(print_icon 'VCS_TAG_ICON')${tag}%f" + [[ -n "${tag}" ]] && hook_com[branch]="%F{$POWERLEVEL9K_VCS_FOREGROUND}$(print_icon 'VCS_TAG_ICON')${tag}%f" } # Show count of stashed changes |