diff options
author | Roman Perepelitsa <roman.perepelitsa@gmail.com> | 2023-11-01 12:44:43 +0300 |
---|---|---|
committer | Roman Perepelitsa <roman.perepelitsa@gmail.com> | 2023-11-01 12:44:43 +0300 |
commit | 174ce9bf0166c657404a21f4dc9608da935f7325 (patch) | |
tree | 6c51c64b4981120a45959197f4c82f68e91fedc7 /internal | |
parent | 18f0bec1bbdcd595a6cc8155dc09c44acee06d32 (diff) |
recognize azure devops git remote HTTPS URLs (#2472)
Diffstat (limited to 'internal')
-rw-r--r-- | internal/p10k.zsh | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/internal/p10k.zsh b/internal/p10k.zsh index aea27f4c..e50bcce5 100644 --- a/internal/p10k.zsh +++ b/internal/p10k.zsh @@ -3865,9 +3865,11 @@ function _p9k_vcs_icon() { *bitbucket*) _p9k__ret=VCS_GIT_BITBUCKET_ICON;; *stash*) _p9k__ret=VCS_GIT_BITBUCKET_ICON;; *gitlab*) _p9k__ret=VCS_GIT_GITLAB_ICON;; + # Azure DevOps: visualstudio.com is the old hostname, dev.azure.com is the new one. # https://learn.microsoft.com/en-us/azure/devops/repos/git/use-ssh-keys-to-authenticate - (|*@)vs-ssh.visualstudio.com(|:*)) _p9k__ret=VCS_GIT_AZURE_ICON;; # old - (|*@)ssh.dev.azure.com(|:*)) _p9k__ret=VCS_GIT_AZURE_ICON;; # new + (|*@|*.)(visualstudio.com|dev.azure.com)(|:*|/*)) + _p9k__ret=VCS_GIT_AZURE_ICON + ;; # old *) _p9k__ret=VCS_GIT_ICON;; esac } @@ -9396,7 +9398,7 @@ if [[ $__p9k_dump_file != $__p9k_instant_prompt_dump_file && -n $__p9k_instant_p zf_rm -f -- $__p9k_instant_prompt_dump_file{,.zwc} 2>/dev/null fi -typeset -g P9K_VERSION=1.19.9 +typeset -g P9K_VERSION=1.19.10 unset VSCODE_SHELL_INTEGRATION _p9k_init_ssh |