mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-05-01 04:30:37 +02:00
Fixed minimal.zsh-theme's check for in_hg.
This commit is contained in:
parent
0b340bc3a5
commit
a9532cb7e5
1 changed files with 1 additions and 1 deletions
|
|
@ -14,7 +14,7 @@ ZSH_THEME_HG_PROMPT_CLEAN=$ZSH_THEME_GIT_PROMPT_CLEAN
|
|||
vcs_status() {
|
||||
if [[ $(whence in_svn) != "" ]] && in_svn; then
|
||||
svn_prompt_info
|
||||
elif [[ $(whence in_hg) != "" ]] && in_hg; then
|
||||
elif [[ $(whence in_hg) != "" && $(in_hg) == 1 ]]; then
|
||||
hg_prompt_info
|
||||
else
|
||||
git_prompt_info
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue