diff options
author | Ben Hilburn <bhilburn@gmail.com> | 2016-09-26 20:54:43 +0300 |
---|---|---|
committer | Ben Hilburn <bhilburn@gmail.com> | 2016-09-26 20:54:43 +0300 |
commit | 3f1f11a1f1fa18d8bb250b03c45ca6fc49bfbfd9 (patch) | |
tree | e3dc1cfe4580b2a719726ecf69531d7ce3b057d3 /functions/vcs.zsh | |
parent | c4fdc8f70804fea6f543e6bbf3964301e2537e36 (diff) |
bugfix: typo in "POWERLEVEL9K" broke the VCS tag display
Diffstat (limited to 'functions/vcs.zsh')
-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 9418df81..f1ff8891 100644 --- a/functions/vcs.zsh +++ b/functions/vcs.zsh @@ -62,7 +62,7 @@ function +vi-git-remotebranch() { set_default POWERLEVEL9K_VCS_HIDE_TAGS false function +vi-git-tagname() { - if [[ "$POWERLEVE9K_VCS_HIDE_TAGS" == "false" ]]; then + if [[ "$POWERLEVEL9K_VCS_HIDE_TAGS" == "false" ]]; then # If we are on a tag, append the tagname to the current branch string. local tag tag=$(git describe --tags --exact-match HEAD 2>/dev/null) |