0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00
ohmyzsh/plugins/svn-fast-info/svn-fast-info.plugin.zsh

73 lines
2.5 KiB
Bash
Raw Normal View History

function svn_prompt_info() {
2014-01-07 10:07:02 +01:00
local info
info=$(svn info 2>&1) || return 1 # capture stdout and stderr
2014-01-07 10:07:02 +01:00
local repo_need_upgrade=$(svn_repo_need_upgrade $info)
2014-01-04 22:06:09 +01:00
if [[ -n $repo_need_upgrade ]]; then
2014-01-07 10:07:02 +01:00
printf '%s%s%s%s%s%s%s\n' \
"$ZSH_PROMPT_BASE_COLOR" \
"$ZSH_THEME_SVN_PROMPT_PREFIX" \
"$ZSH_PROMPT_BASE_COLOR" \
"$repo_need_upgrade" \
"$ZSH_PROMPT_BASE_COLOR" \
"$ZSH_THEME_SVN_PROMPT_SUFFIX" \
"$ZSH_PROMPT_BASE_COLOR"
2014-01-07 10:07:02 +01:00
else
printf '%s%s%s%s %s%s%s:%s%s%s%s' \
"$ZSH_PROMPT_BASE_COLOR" \
"$ZSH_THEME_SVN_PROMPT_PREFIX" \
"$(svn_status_info $info)" \
"$ZSH_PROMPT_BASE_COLOR" \
\
"$ZSH_THEME_BRANCH_NAME_COLOR" \
"$(svn_current_branch_name $info)" \
"$ZSH_PROMPT_BASE_COLOR" \
\
"$(svn_current_revision $info)" \
"$ZSH_PROMPT_BASE_COLOR" \
"$ZSH_THEME_SVN_PROMPT_SUFFIX" \
"$ZSH_PROMPT_BASE_COLOR"
2014-01-07 10:07:02 +01:00
fi
2014-01-04 22:06:09 +01:00
}
function svn_repo_need_upgrade() {
grep -q "E155036" <<< "${1:-$(svn info 2> /dev/null)}" && \
2014-01-07 10:07:02 +01:00
echo "E155036: upgrade repo with svn upgrade"
2014-01-04 22:06:09 +01:00
}
2014-01-08 03:04:54 +01:00
function svn_current_branch_name() {
grep '^URL:' <<< "${1:-$(svn info 2> /dev/null)}" | egrep -o '(tags|branches)/[^/]+|trunk'
2014-01-04 22:06:09 +01:00
}
2014-01-08 03:04:54 +01:00
function svn_repo_root_name() {
grep '^Repository\ Root:' <<< "${1:-$(svn info 2> /dev/null)}" | sed 's#.*/##'
2014-01-04 22:06:09 +01:00
}
2014-01-08 03:04:54 +01:00
function svn_current_revision() {
echo "${1:-$(svn info 2> /dev/null)}" | sed -n 's/Revision: //p'
2014-01-04 22:06:09 +01:00
}
function svn_status_info() {
local svn_status_string="$ZSH_THEME_SVN_PROMPT_CLEAN"
local svn_status="$(svn status 2> /dev/null)";
if command grep -E '^\s*A' &> /dev/null <<< $svn_status; then
svn_status_string="$svn_status_string${ZSH_THEME_SVN_PROMPT_ADDITIONS:-+}"
fi
if command grep -E '^\s*D' &> /dev/null <<< $svn_status; then
svn_status_string="$svn_status_string${ZSH_THEME_SVN_PROMPT_DELETIONS:-}"
fi
if command grep -E '^\s*M' &> /dev/null <<< $svn_status; then
svn_status_string="$svn_status_string${ZSH_THEME_SVN_PROMPT_MODIFICATIONS:-}"
fi
if command grep -E '^\s*[R~]' &> /dev/null <<< $svn_status; then
svn_status_string="$svn_status_string${ZSH_THEME_SVN_PROMPT_REPLACEMENTS:-}"
fi
if command grep -E '^\s*\?' &> /dev/null <<< $svn_status; then
svn_status_string="$svn_status_string${ZSH_THEME_SVN_PROMPT_UNTRACKED:-?}"
fi
if command grep -E '^\s*[CI!L]' &> /dev/null <<< $svn_status; then
svn_status_string="$svn_status_string${ZSH_THEME_SVN_PROMPT_DIRTY:-!}"
fi
echo $svn_status_string
}