aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Hilburn <bhilburn@gmail.com>2017-12-05 04:09:58 +0300
committerGitHub <noreply@github.com>2017-12-05 04:09:58 +0300
commit3fe9b83ebb0c835d2588f88873d6e8e6b2e1e1be (patch)
treec4dd622efecbf916e6e160a03224ed24f9f371fb
parent3d79ca1adc6b2a093f52ae8e96637320f6bb3e7f (diff)
parentcbc7199dc402bb1e72592bf20de9b4f2bc3748c3 (diff)
Merge pull request #688 from Stealthii/feature/stash-vcs
Add Stash naming support for Bitbucket Server
-rw-r--r--functions/vcs.zsh2
1 files changed, 2 insertions, 0 deletions
diff --git a/functions/vcs.zsh b/functions/vcs.zsh
index c3e507b9..d80bca8e 100644
--- a/functions/vcs.zsh
+++ b/functions/vcs.zsh
@@ -116,6 +116,8 @@ function +vi-vcs-detect-changes() {
vcs_visual_identifier='VCS_GIT_GITHUB_ICON'
elif [[ "$remote" =~ "bitbucket" ]] then
vcs_visual_identifier='VCS_GIT_BITBUCKET_ICON'
+ elif [[ "$remote" =~ "stash" ]] then
+ vcs_visual_identifier='VCS_GIT_BITBUCKET_ICON'
elif [[ "$remote" =~ "gitlab" ]] then
vcs_visual_identifier='VCS_GIT_GITLAB_ICON'
else