1
0
Fork 0
mirror of synced 2024-06-27 19:01:10 -04:00
zimfw/modules/git/functions/git_prompt_info
2015-12-19 09:48:29 -05:00

9 lines
364 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