summaryrefslogtreecommitdiffstats
path: root/prompt.zsh
diff options
context:
space:
mode:
authorMichael Allen <michael@michaelallen.io>2015-08-29 15:36:15 +0100
committerMichael Allen <michael@michaelallen.io>2015-08-29 15:36:15 +0100
commit0629f020498d97f71e8a46828803e4ff54aa6924 (patch)
treefec1adcd7aacb6f55daaaadb8a9c9f139e5a2933 /prompt.zsh
parentda76c7dcbc9b52e881c864c7014dbf2a0aaf43b5 (diff)
parentc03a462177bc2ec469a0cdb06234d08f35054966 (diff)
downloadgit-sonar-0629f020498d97f71e8a46828803e4ff54aa6924.tar.gz
git-sonar-0629f020498d97f71e8a46828803e4ff54aa6924.zip
Merge pull request #29 from reinaldo13/issue-17
issue-17: Add arguments to make the prompt shorter
Diffstat (limited to 'prompt.zsh')
-rwxr-xr-xprompt.zsh5
1 files changed, 4 insertions, 1 deletions
diff --git a/prompt.zsh b/prompt.zsh
index cb1eb91..a5ccba5 100755
--- a/prompt.zsh
+++ b/prompt.zsh
@@ -1,12 +1,15 @@
#! /usr/bin/env zsh
dot="$(cd "$(dirname "$0")"; pwd)"
+args=$@
source "$dot/radar-base.sh"
if is_repo; then
autoload colors && colors
printf '%s' "%{$fg_bold[black]%} git:(%{$reset_color%}"
- zsh_color_remote_commits
+ if show_remote_status $args; then
+ zsh_color_remote_commits
+ fi
readable_branch_name
zsh_color_local_commits
printf '%s' "%{$fg_bold[black]%})%{$reset_color%}"