diff options
author | Ben Hilburn <bhilburn@gmail.com> | 2016-07-13 03:17:25 +0300 |
---|---|---|
committer | Ben Hilburn <bhilburn@gmail.com> | 2016-07-13 03:17:25 +0300 |
commit | b893d66a465b9408128b8803fc85c82639776f1f (patch) | |
tree | d3d4202dfc63957fe61be30f60094b4996a2788e /functions/vcs.zsh | |
parent | 4666bd49e631cf61befd959c55e2a83a5b87a932 (diff) | |
parent | ef2d01a2aa4ce3c6edcef990f780b8babcae8d07 (diff) |
Merge branch 'next' of https://github.com/Xetius/powerlevel9k into xetius-vcs-hide-tags
Diffstat (limited to 'functions/vcs.zsh')
-rw-r--r-- | functions/vcs.zsh | 38 |
1 files changed, 20 insertions, 18 deletions
diff --git a/functions/vcs.zsh b/functions/vcs.zsh index 15f0177e..b2d87d30 100644 --- a/functions/vcs.zsh +++ b/functions/vcs.zsh @@ -61,24 +61,26 @@ function +vi-git-remotebranch() { } function +vi-git-tagname() { - # 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) - - if [[ -n "${tag}" ]] ; then - # There is a tag that points to our current commit. Need to determine if we - # are also on a branch, or are in a DETACHED_HEAD state. - if [[ -z $(git symbolic-ref HEAD 2>/dev/null) ]]; then - # DETACHED_HEAD state. We want to append the tag name to the commit hash - # and print it. Unfortunately, `vcs_info` blows away the hash when a tag - # exists, so we have to manually retrieve it and clobber the branch - # string. - local revision - revision=$(git rev-list -n 1 --abbrev-commit --abbrev=${POWERLEVEL9K_VCS_INTERNAL_HASH_LENGTH} HEAD) - hook_com[branch]="$(print_icon 'VCS_BRANCH_ICON')${revision} $(print_icon 'VCS_TAG_ICON')${tag}" - else - # We are on both a tag and a branch; print both by appending the tag name. - hook_com[branch]+=" $(print_icon 'VCS_TAG_ICON')${tag}" + if [[ -z "${POWERLEVE9K_VCS_HIDE_TAGS}" ]]; 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) + + if [[ -n "${tag}" ]] ; then + # There is a tag that points to our current commit. Need to determine if we + # are also on a branch, or are in a DETACHED_HEAD state. + if [[ -z $(git symbolic-ref HEAD 2>/dev/null) ]]; then + # DETACHED_HEAD state. We want to append the tag name to the commit hash + # and print it. Unfortunately, `vcs_info` blows away the hash when a tag + # exists, so we have to manually retrieve it and clobber the branch + # string. + local revision + revision=$(git rev-list -n 1 --abbrev-commit --abbrev=${POWERLEVEL9K_VCS_INTERNAL_HASH_LENGTH} HEAD) + hook_com[branch]="$(print_icon 'VCS_BRANCH_ICON')${revision} $(print_icon 'VCS_TAG_ICON')${tag}" + else + # We are on both a tag and a branch; print both by appending the tag name. + hook_com[branch]+=" $(print_icon 'VCS_TAG_ICON')${tag}" + fi fi fi } |