summaryrefslogtreecommitdiffstats
path: root/prompt.bash
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-xprompt.bash (renamed from prompt)9
1 files changed, 3 insertions, 6 deletions
diff --git a/prompt b/prompt.bash
index 6d5c71d..37a0295 100755
--- a/prompt
+++ b/prompt.bash
@@ -1,3 +1,5 @@
+#! /usr/bin/env bash
+
dot="$(cd "$(dirname "$0")"; pwd)"
source "$dot/git-base.sh"
@@ -6,12 +8,7 @@ command="$1"
if [[ "$command" == "--zsh" ]]; then
git_prefix="%{$fg_bold[black]%}git:(%{$reset_color}"
git_suffix="%{$fg_bold[black]%})%{$reset_color}"
- printf '%s' $git_prefix
- zsh_color_remote_commits
- branch_name
- zsh_color_local_commits
- printf '%s' $git_suffix
- zsh_color_changes_status
+ printf '%q' "$git_prefix$(zsh_color_remote_commits;branch_name;zsh_color_local_commits)$git_suffix$(zsh_color_changes_status)"
fi
if [[ "$command" == "--bash" || "$command" == "" ]]; then