summaryrefslogtreecommitdiffstats
path: root/prompt.zsh
diff options
context:
space:
mode:
authorMichael Allen <michael@michaelallen.io>2015-09-17 11:03:44 +0100
committerMichael Allen <michael@michaelallen.io>2015-09-17 11:11:48 +0100
commitb4a48dd6b781e357fc513b1f6dd668d8933f3660 (patch)
treeee96a38fc6c202ffa661b589ff9e31a2754a3256 /prompt.zsh
parentd2c7ed085ff711a9f34fc1b0f521bcde253f19c5 (diff)
downloadgit-sonar-b4a48dd6b781e357fc513b1f6dd668d8933f3660.tar.gz
git-sonar-b4a48dd6b781e357fc513b1f6dd668d8933f3660.zip
Switch zsh to use the new render prompt
Diffstat (limited to '')
-rwxr-xr-xprompt.zsh9
1 files changed, 1 insertions, 8 deletions
diff --git a/prompt.zsh b/prompt.zsh
index 2d31820..c2b175a 100755
--- a/prompt.zsh
+++ b/prompt.zsh
@@ -8,12 +8,5 @@ if is_repo; then
autoload colors && colors
prepare_zsh_colors
- printf '%s' "%{$fg_bold[black]%} git:(%{$reset_color%}"
- if show_remote_status $args; then
- color_remote_commits
- fi
- readable_branch_name
- color_local_commits
- printf '%s' "%{$fg_bold[black]%})%{$reset_color%}"
- color_changes_status
+ render_prompt
fi