diff options
author | Michael Allen <michael@michaelallen.io> | 2015-08-18 22:11:00 +0100 |
---|---|---|
committer | Michael Allen <michael@michaelallen.io> | 2015-08-18 22:25:33 +0100 |
commit | 073bd97c8a0d9f4c0d6d9b46dca4e6cec6b46af6 (patch) | |
tree | 5a45557b4bb1eb645e9d67e9807445f6f2c8f55d /prompt.bash | |
parent | ca52b6ccdf1306079a060f06795d404962c99e19 (diff) | |
download | git-sonar-073bd97c8a0d9f4c0d6d9b46dca4e6cec6b46af6.tar.gz git-sonar-073bd97c8a0d9f4c0d6d9b46dca4e6cec6b46af6.zip |
Switch to the more common -E grep regex flag
Diffstat (limited to '')
-rwxr-xr-x | prompt.bash | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/prompt.bash b/prompt.bash index 37a0295..410989c 100755 --- a/prompt.bash +++ b/prompt.bash @@ -3,16 +3,8 @@ dot="$(cd "$(dirname "$0")"; pwd)" source "$dot/git-base.sh" -command="$1" - -if [[ "$command" == "--zsh" ]]; then - git_prefix="%{$fg_bold[black]%}git:(%{$reset_color}" - git_suffix="%{$fg_bold[black]%})%{$reset_color}" - 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 +if is_repo; then git_prefix="\033[1;30mgit:(\033[0m" git_suffix="\033[1;30m)\033[0m" - echo "$git_prefix$(bash_color_remote_commits;readable_branch_name;bash_color_local_commits)$git_suffix$(bash_color_changes_status)" + printf " $git_prefix$(bash_color_remote_commits;readable_branch_name;bash_color_local_commits)$git_suffix$(bash_color_changes_status)" fi |