Remove HG and SVN prompt, result a big gain in performance

This commit is contained in:
Adrien Dudouit-Exposito 2012-06-29 21:06:48 +02:00
commit f113c41948

View file

@ -18,50 +18,8 @@ function __custom_git_prompt() {
echo " ${ZSH_COLOR_BASE}git:{ ${ZSH_COLOR_GIT_REPO}${ZSH_GIT_REPO}${ZSH_COLOR_BASE} @ ${ZSH_COLOR_GIT_BRANCH}${ZSH_GIT_BRANCH}${ZSH_COLOR_BASE} ${ZSH_GIT_DIRTY}${COLOR_BASE}}${ZSH_GIT_STATUT}"
}
function __custom_hg_prompt() {
# Use hg-prompt extension >> $ hg clone https://bitbucket.org/sjl/hg-prompt
hg prompt "{[${ZSH_GIT_DIRTY}+{incoming|count}${ZSH_COLOR_BASE}] }{root|basename}@{branch}{ [${ZSH_GIT_DIRTY}+{outgoing|count}${ZSH_COLOR_BASE}]}{ | {bookmark}}{status}" 2> /dev/null
}
function __custom_svn_prompt() {
# ----------------------------------------------------------------------------
# Custom SVN prompt
# Based on: https://gist.github.com/1156969
# With help from: http://andrewray.me/bash-prompt-builder/index.html
#
# Only the root directory holds the .svn repository. We need to test each directory in the current
# directory's path to determine if we are under Subversion control.
# ----------------------------------------------------------------------------
# Set up defaults
local svn_branch=""
local svn_repository=""
local svn_version=""
local svn_change=""
# if `svn info` returns more than 1 line, we are under subversion control
testsvn=`svn info > /dev/null 2>&1 | wc -l`
if [ $testsvn -gt 1 ] ; then
# query svn info and parse the results
svn_branch=`svn info | grep '^URL:' | egrep -o '((tags|branches)/[^/]+|trunk).*' | sed -E -e 's/^(branches|tags)\///g'`
svn_repository=`svn info | grep '^Repository Root:' | egrep -o '(http|https|file|svn|svn+ssh)/[^/]+' | egrep -o '[^/]+$'`
svn_version=`svnversion -n`
# this is the slowest test of the bunch
change_count=`svn status | grep "?\|\!\|M\|A" | wc -l`
if [ "$change_count" != " 0" ]; then
svn_change=" [dirty]"
else
svn_change=""
fi
# show the results
echo "%{$fg[blue]%}$svn_repository/$svn_branch @ $svn_version%{$reset_color%}%{$fg[yellow]%}$svn_change%{$reset_color%}"
fi
}
function __custom_prompt() {
echo "$(__custom_git_prompt)$(__custom_hg_prompt)$(__custom_svn_prompt)"
echo "$(__custom_git_prompt)"
}
ZSH_COLOR_VOID="%{$reset_color%}"
@ -87,8 +45,6 @@ ZSH_THEME_GIT_PROMPT_RENAMED="%{$fg[magenta]%}➜"
ZSH_THEME_GIT_PROMPT_UNMERGED="%{$fg[yellow]%}|"
ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[cyan]%}✭"
PROMPT="${ZSH_COLOR_BASE}╭─[ ${ZSH_COLOR_SUB1}%n${ZSH_COLOR_BASE} @${ZSH_COLOR_HOST}%m${ZSH_COLOR_BASE} ] ${ZSH_COLOR_SUB2}%2~${ZSH_COLOR_BASE} \$(__custom_git_prompt)
${ZSH_COLOR_BASE}╰─ ${ZSH_COLOR_SUB1} %{%b%}${ZSH_COLOR_VOID}"