From 3f1f11a1f1fa18d8bb250b03c45ca6fc49bfbfd9 Mon Sep 17 00:00:00 2001 From: Ben Hilburn Date: Mon, 26 Sep 2016 13:54:43 -0400 Subject: [PATCH] bugfix: typo in "POWERLEVEL9K" broke the VCS tag display --- functions/vcs.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)