1
0
Fork 0
mirror of synced 2024-06-28 03:11:09 -04:00
zimfw/modules/git/functions/git_prompt_info
2015-12-18 09:45:36 -05:00

9 lines
360 B
Plaintext

# slightly modified git_prompt_info from oh-my-zsh for theme compatibility
local ref
if [[ ${zgit_hide_prompt} != 'true' ]]; then
ref=$(command git symbolic-ref HEAD 2> /dev/null) || \
ref=$(command git rev-parse --short HEAD 2> /dev/null) || return 0
print "$ZSH_THEME_GIT_PROMPT_PREFIX${ref#refs/heads/}$(parse_git_dirty)$ZSH_THEME_GIT_PROMPT_SUFFIX"
fi