summaryrefslogtreecommitdiffstats
path: root/radar-base.sh
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 /radar-base.sh
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 'radar-base.sh')
-rwxr-xr-xradar-base.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/radar-base.sh b/radar-base.sh
index b7074d8..d019629 100755
--- a/radar-base.sh
+++ b/radar-base.sh
@@ -1,3 +1,5 @@
+NO_REMOTE_STATUS='--no-remote-status'
+
dot_git=""
cwd=""
remote=""
@@ -469,3 +471,9 @@ zsh_color_remote_commits() {
printf %s "$remote"
}
+show_remote_status() {
+ if [[ $@ == *$NO_REMOTE_STATUS* ]]; then
+ return 1 # don't show the git remote status
+ fi
+ return 0
+}