summaryrefslogtreecommitdiff
path: root/01_Internal.zsh
diff options
context:
space:
mode:
authorHugues Hiegel <hugues.hiegel@qosmos.com>2012-06-07 15:25:57 +0200
committerHugues Hiegel <hugues.hiegel@qosmos.com>2012-06-07 15:25:57 +0200
commit1697c66240bc9d7b85e50f500ac6704f8e69bf33 (patch)
tree2090e55a37d3e100efeb743d21aa2b0fa2ae061a /01_Internal.zsh
parent89006fdc2f5ee936a4f6f025ac050dd20523c093 (diff)
[Debug] better debug managment
Diffstat (limited to '01_Internal.zsh')
-rw-r--r--01_Internal.zsh6
1 files changed, 6 insertions, 0 deletions
diff --git a/01_Internal.zsh b/01_Internal.zsh
index 359c01c..44c4716 100644
--- a/01_Internal.zsh
+++ b/01_Internal.zsh
@@ -24,6 +24,7 @@ __cmd_exists ()
__term_title()
{
+ __debug -n " Term title..."
# Jobs
typeset -A command
for word in ${=@} ; command[$#command]=$word
@@ -73,6 +74,7 @@ __term_title()
;;
esac
fi
+ __debug
}
__preprint()
@@ -105,10 +107,14 @@ __get_gcl_branch ()
{
case $1 in
git)
+ __debug -n " GIT status..."
__get_git_branch
+ __debug
;;
hg)
+ __debug -n " HG status..."
__get_hg_branch
+ __debug
;;
*)
;;