diff options
author | Ben Hilburn <bhilburn@gmail.com> | 2018-03-07 04:58:12 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-07 04:58:12 +0300 |
commit | f17a715610246cb4abe965b2e479ee168c800ad6 (patch) | |
tree | 3bb95175448c096bf360fd1115619d79d28f5f3b /functions/vcs.zsh | |
parent | 162caba19cdc51ea52eb5fabd5d18f03cb20e467 (diff) | |
parent | b8a68dd4a88cc0454ed1e385765d368e7fb50429 (diff) |
Merge branch 'next' into master
Diffstat (limited to 'functions/vcs.zsh')
-rw-r--r-- | functions/vcs.zsh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/functions/vcs.zsh b/functions/vcs.zsh index 89f04143..e2e9f3a3 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 |