Updated characters in agnoster.zsh-theme to work on OSX

Separator characters weren't working on OSX - corrected by replacing with UTF-8 codes. I still don't know what characters are intended for hg
This commit is contained in:
Ujjwal Thaakar 2013-07-24 17:05:10 +05:30
commit 0ff09d1358

View file

@ -26,7 +26,7 @@
# A few utility functions to make it easy and re-usable to draw segmented prompts
CURRENT_BG='NONE'
SEGMENT_SEPARATOR=''
SEGMENT_SEPARATOR=''
# Begin a segment
# Takes two arguments, background and foreground. Both can be omitted,
@ -90,7 +90,7 @@ prompt_git() {
zstyle ':vcs_info:*' formats ' %u%c'
zstyle ':vcs_info:*' actionformats '%u%c'
vcs_info
echo -n "${ref/refs\/heads\// }${vcs_info_msg_0_}"
echo -n "${ref/refs\/heads\// }${vcs_info_msg_0_}"
fi
}