omg/prompt.sh

203 lines
7.8 KiB
Bash
Raw Normal View History

2013-09-02 02:31:05 -04:00
function enrich {
flag=$1
symbol=$2
2013-09-02 13:00:26 -04:00
if [[ -n $3 ]]
then
coloron=$3
else
coloron=${on}
fi
if [ ${use_color_off} == false -a ${flag} == false ]; then symbol=" "; fi
2013-09-02 13:00:26 -04:00
if [[ $flag == true ]]; then color="${coloron}"; else color="${off}"; fi
2013-09-04 16:56:51 -04:00
PS1="${PS1}${color}${symbol}${reset} "
2013-09-02 02:31:05 -04:00
}
function build_prompt {
PS1=""
2013-09-03 02:35:50 -04:00
# Symbols
if [[ -z "${is_a_git_repo_symbol}" ]]; then is_a_git_repo_symbol="❤"; fi
if [[ -z "${has_untracked_files_symbol}" ]]; then has_untracked_files_symbol="∿"; fi
if [[ -z "${has_adds_symbol}" ]]; then has_adds_symbol="+"; fi
if [[ -z "${has_deletions_symbol}" ]]; then has_deletions_symbol="-"; fi
if [[ -z "${has_deletions_cached_symbol}" ]]; then has_deletions_cached_symbol="✖"; fi
if [[ -z "${has_modifications_symbol}" ]]; then has_modifications_symbol="✎"; fi
if [[ -z "${has_modifications_cached_symbol}" ]]; then has_modifications_cached_symbol="☲"; fi
if [[ -z "${ready_to_commit_symbol}" ]]; then ready_to_commit_symbol="→"; fi
2013-09-03 02:35:50 -04:00
if [[ -z "${is_on_a_tag_symbol}" ]]; then is_on_a_tag_symbol="⌫"; fi
if [[ -z "${needs_to_merge_symbol}" ]]; then needs_to_merge_symbol="ᄉ"; fi
if [[ -z "${has_upstream_symbol}" ]]; then has_upstream_symbol="⇅"; fi
if [[ -z "${detached_symbol}" ]]; then detached_symbol="⚯"; fi
if [[ -z "${can_fast_forward_symbol}" ]]; then can_fast_forward_symbol="»"; fi
if [[ -z "${has_diverged_symbol}" ]]; then has_diverged_symbol="Ⴤ"; fi
2013-09-03 02:35:50 -04:00
if [[ -z "${rebase_tracking_branch_symbol}" ]]; then rebase_tracking_branch_symbol="↶"; fi
if [[ -z "${merge_tracking_branch_symbol}" ]]; then merge_tracking_branch_symbol="ᄉ"; fi
if [[ -z "${should_push_symbol}" ]]; then should_push_symbol="↑"; fi
if [[ -z "${has_stashes_symbol}" ]]; then has_stashes_symbol="★"; fi
2013-09-03 17:35:13 -04:00
# flags
if [[ -z "${display_has_upstream}" ]]; then display_has_upstream=false; fi
if [[ -z "${display_tag}" ]]; then display_tag=false; fi
2013-09-03 12:47:06 -04:00
if [[ -z "${display_tag_name}" ]]; then display_tag_name=true; fi
if [[ -z "${two_lines}" ]]; then two_lines=true; fi
2013-09-03 02:35:50 -04:00
if [[ -z "${finally}" ]]; then finally="\w ∙ "; fi
if [[ -z "${use_color_off}" ]]; then use_color_off=false; fi
2013-09-03 02:35:50 -04:00
2013-09-02 13:00:26 -04:00
# Colors
2013-09-02 02:49:50 -04:00
on="\[\033[0;37m\]"
2013-09-02 02:31:05 -04:00
off="\[\033[1;30m\]"
2013-09-04 16:56:51 -04:00
red="\[\033[0;31m\]"
green="\[\033[0;32m\]"
yellow="\[\033[0;33m\]"
2013-09-04 16:56:51 -04:00
violet="\[\033[0;35m\]"
2013-09-02 02:31:05 -04:00
branch_color="\[\033[0;34m\]"
# blinking="\[\033[1;5;17m\]"
reset="\[\033[0m\]"
2013-09-02 13:00:26 -04:00
# Git info
current_commit_hash=$(git rev-parse HEAD 2> /dev/null)
current_commit_hash_abbrev=$(git rev-parse --short HEAD 2> /dev/null)
if [[ -n $current_commit_hash ]]; then is_a_git_repo=true; else is_a_git_repo=false; fi
number_of_logs=$(git log --pretty=oneline 2>/dev/null| wc -l)
current_branch=$(git rev-parse --abbrev-ref HEAD 2>/dev/null);
if [[ $current_branch == "HEAD" ]]; then detached=true; else detached=false; fi
if [ $is_a_git_repo == true -a $number_of_logs == 0 ]; then just_init=true; fi
if [ $is_a_git_repo == true -a $number_of_logs -gt 0 ]; then
2013-09-02 13:00:26 -04:00
upstream=$(git rev-parse --symbolic-full-name --abbrev-ref @{upstream} 2> /dev/null)
if [[ $upstream != "@{upstream}" ]]; then has_upstream=true; else has_upstream=false; upstream=""; fi
2013-09-02 13:12:27 -04:00
number_of_modifications=$(git status --short 2> /dev/null|grep --count -e ^\.M)
if [[ ${number_of_modifications} -gt 0 ]] ; then has_modifications=true; else has_modifications=false; fi
number_of_modifications_cached=$(git status --short 2> /dev/null|grep --count -e ^M)
if [[ ${number_of_modifications_cached} -gt 0 ]] ; then has_modifications_cached=true; else has_modifications_cached=false; fi
2013-09-02 16:59:09 -04:00
number_of_adds=$(git status --short 2> /dev/null|grep --count -e ^\A)
if [[ ${number_of_adds} -gt 0 ]] ; then has_adds=true; else has_adds=false; fi
number_of_deletions=$(git status --short 2> /dev/null|grep --count -e ^.D)
if [[ ${number_of_deletions} -gt 0 ]] ; then has_deletions=true; else has_deletions=false; fi
number_of_deletions_cached=$(git status --short 2> /dev/null|grep --count -e ^D)
if [[ ${number_of_deletions_cached} -gt 0 ]] ; then has_deletions_cached=true; else has_deletions_cached=false; fi
numbers_of_files_cached=$(git status --short 2> /dev/null|grep --count -e ^[MAD])
numbers_of_files_not_cached=$(git status --short 2> /dev/null|grep --count -e ^.[MAD\?])
if [ ${numbers_of_files_cached} -gt 0 -a ${numbers_of_files_not_cached} -eq 0 ] ; then ready_to_commit=true; else ready_to_commit=false; fi
2013-09-02 13:12:27 -04:00
number_of_untracked_files=$(git status --short 2> /dev/null|grep --count -e ^\?\?)
if [[ ${number_of_untracked_files} -gt 0 ]] ; then has_untracked_files=true; else has_untracked_files=false; fi
2013-09-03 17:35:13 -04:00
tag_at_current_commit=$(git describe --exact-match --tags ${current_commit_hash} 2>/dev/null)
if [[ -n "${tag_at_current_commit}" ]]; then is_on_a_tag=true; else is_on_a_tag=false; fi;
commits_ahead=0
commits_behind=0
has_diverged=false
can_fast_forward=false
can_fast_forward=false
Added --pretty=oneline to commit aa63017ad0137f44c7b2ffe84761a3fcc32ee551 Author: Arialdo Martini <arialdomartini@gmail.com> Date: Sun Sep 8 13:03:32 2013 +0200 By default does not print a symbol when the correspondent flag is false commit f2e3a20c199c52410770b66fd0bc73bc1af7a178 Author: Arialdo Martini <arialdomartini@gmail.com> Date: Thu Sep 5 22:12:34 2013 +0200 tag symbol is close to tag name commit 581888319592d2e74f5319151191e4709b48ba24 Author: Arialdo Martini <arialdomartini@gmail.com> Date: Thu Sep 5 08:29:12 2013 +0200 It does not fire any errors when in a brand new repository commit 7d8f4eac042ff2c8ad35dd6431c262a147ba199e Author: Arialdo Martini <arialdomartini@gmail.com> Date: Fri Sep 6 17:03:07 2013 +0200 Shut up and take my money is an animated gif commit fbd9341c649616ecf58a4cd402e63b9ddff6eee3 Author: Arialdo Martini <arialdomartini@gmail.com> Date: Fri Sep 6 15:44:54 2013 +0200 "Known bugs" specifies the need for an unicode font commit b135765cabb9ec3803bc3c17dd64d6832200537d Author: Arialdo Martini <arialdomartini@gmail.com> Date: Fri Sep 6 15:20:39 2013 +0200 Update README.md README.md has "Installation", "Known bugs" and "zsh version" sections commit 966c06ab9fadb1b6438ac1775656ff77414e9f32 Author: Arialdo Martini <arialdomartini@gmail.com> Date: Fri Sep 6 15:01:49 2013 +0200 README.md has all the sample images commit e7a7c07427a590e379f78706234e6b789800f54d Author: Arialdo Martini <arialdomartini@gmail.com> Date: Wed Sep 4 22:56:51 2013 +0200 Is a git repo has a violet symbol commit 249b7170000d9c7af019ac3f7837edc2e7a2d32c Author: Arialdo Martini <arialdomartini@gmail.com> Date: Wed Sep 4 22:36:13 2013 +0200 a star is displayed when stash list is not empty commit 87a75f7d7744a248bbcf9de053395d23ebaaf1b1 Author: Arialdo Martini <arialdomartini@gmail.com> Date: Wed Sep 4 22:28:03 2013 +0200 detached symbol is not overwritten commit 475805526bee4bc1efea3ffdcf67138592512973 Author: Arialdo Martini <arialdomartini@gmail.com> Date: Wed Sep 4 20:17:21 2013 +0200 number of ahead/behind commits, should push, can fast forward and has diverged sybols are set correctly commit 8d32b73a46f51947f98e1c418181d89cc49ce136 Author: Arialdo Martini <arialdomartini@gmail.com> Date: Wed Sep 4 08:47:18 2013 +0200 When not in a git repo, the prompt does not use two lines commit fc42bd7a577fb58671fdee8a2c642eb881ad5656 Author: Arialdo Martini <arialdomartini@gmail.com> Date: Wed Sep 4 08:45:20 2013 +0200 Has modifications cached has a nicer symbol commit 5c0092061da5968796aa8b7798c86d91c782c275 Author: Arialdo Martini <arialdomartini@gmail.com> Date: Wed Sep 4 08:38:57 2013 +0200 ready to commit is displayed only when no files are left to cache commit 20e74a8159032130e714a72f5ce4c1ad40a548d2 Author: Arialdo Martini <arialdomartini@gmail.com> Date: Wed Sep 4 08:13:30 2013 +0200 when browsing bash history the cursor is no shifted anymore commit d8b3c75047d54f5759ad77c8616e194bbb8cb46d Author: Arialdo Martini <arialdomartini@gmail.com> Date: Tue Sep 3 23:35:13 2013 +0200 tags are detected correctly commit dd7f87d054432dcc2ab52dac5114fdc8ddb0173f Author: Arialdo Martini <arialdomartini@gmail.com> Date: Tue Sep 3 23:20:44 2013 +0200 tag in last position; has diverged and can fast-forward work commit bd94ce0058a3631c99692e8e277cdff7d133fd5c Author: Arialdo Martini <arialdomartini@gmail.com> Date: Tue Sep 3 22:02:15 2013 +0200 the number of commits behind or ahead is correct even after a push commit 71d2975e6aba5ef5e89549b8a763535ca20afe64 Author: Arialdo Martini <arialdomartini@gmail.com> Date: Tue Sep 3 19:11:22 2013 +0200 the number of commits from or to the remote branch is correctly calculated commit c6e25a79c03bc40f6bb749413aaf46a7cb3ebe37 Author: Arialdo Martini <arialdomartini@gmail.com> Date: Tue Sep 3 18:47:06 2013 +0200 display of tag name is optional commit 48ccb29b257bfb644b66f7d10bdf61353bc7abe2 Author: Arialdo Martini <arialdomartini@gmail.com> Date: Tue Sep 3 18:41:00 2013 +0200 if on a tag, it displays a symbol and the tag name commit 05577400d6f0576db0fa0f2481058f72642fbf27 Author: Arialdo Martini <arialdomartini@gmail.com> Date: Tue Sep 3 09:14:58 2013 +0200 it doesn't display an extra space if no ahead/behind message needs to be printed commit 745bb609f8a77432c8d1e97ec33c33768ff33476 Author: Arialdo Martini <arialdomartini@gmail.com> Date: Tue Sep 3 08:57:36 2013 +0200 Shows how many commits the branch is behind or ahead its upstream commit 9b972b61431aacf3d1d4245e6bdbaf22ab4df618 Author: Arialdo Martini <arialdomartini@gmail.com> Date: Tue Sep 3 08:35:50 2013 +0200 Symbols can be overwritten commit a7d727b8005338825d5ec656692cce2a219f2a8b Author: Arialdo Martini <arialdomartini@gmail.com> Date: Tue Sep 3 07:54:15 2013 +0200 The prompt is displayed in two lines commit 27f64033827d08951b6d38d408e9a1068606cbda Author: Arialdo Martini <arialdomartini@gmail.com> Date: Tue Sep 3 07:47:52 2013 +0200 fake Will merge, will rebase commit a48b0acabd56b12153103d2795f5ba0c678398b8 Author: Arialdo Martini <arialdomartini@gmail.com> Date: Mon Sep 2 23:27:36 2013 +0200 Support for just initialized repositories commit 694e1f854e0dc31a8d96b21a9d2d11fd22b5bc78 Author: Arialdo Martini <arialdomartini@gmail.com> Date: Mon Sep 2 22:59:09 2013 +0200 It displays added and removed files commit f254267b28cdcc43df9ffe8522e9a59fef00630e Author: Arialdo Martini <arialdomartini@gmail.com> Date: Mon Sep 2 20:11:54 2013 +0200 if upstream branch has the same name as the local one, the name is omitted commit d86af5c1e960138bb4a027d460d4f9131839dca2 Author: Arialdo Martini <arialdomartini@gmail.com> Date: Mon Sep 2 19:15:33 2013 +0200 The upstream branch is shown commit c397ff3c92c78124f1574a222533bbb696e5eee1 Author: Arialdo Martini <arialdomartini@gmail.com> Date: Mon Sep 2 19:12:27 2013 +0200 Using only enrich commit 064812ae41bba73a95b499c28d3d890094f40f57 Author: Arialdo Martini <arialdomartini@gmail.com> Date: Mon Sep 2 19:00:26 2013 +0200 refactoring commit c1fc8c0151c92c64679229402c8f16cf9954fb28 Author: Arialdo Martini <arialdomartini@gmail.com> Date: Mon Sep 2 08:49:50 2013 +0200 one-line if-then-elses commit bb9e173fd2eeb8d416a1e87c1b6294811ff6360c Author: Arialdo Martini <arialdomartini@gmail.com> Date: Mon Sep 2 08:31:05 2013 +0200 Refactoring, partly working commit e51614216b9116f69ef21b4d1fcf2b71894693d3 Author: Arialdo Martini <arialdomartini@gmail.com> Date: Mon Sep 2 00:59:21 2013 +0200 Flags for modifications, indexed and untracked commit 12360123b4222abe5654d9d8db73b698f443838e Author: Arialdo Martini <arialdomartini@gmail.com> Date: Mon Sep 2 00:02:16 2013 +0200 Displays a yellow heart if the current directory is a git repository commit 5ad1ac07bbc6c51ef73e7b4a1d9e03f72e5bbb19 Author: Arialdo Martini <arialdomartini@gmail.com> Date: Tue Aug 20 06:52:00 2013 -0700 Initial commit for commits counts
2013-09-11 11:54:57 -04:00
commits_ahead=$(git log --pretty=oneline --topo-order --left-right ${current_commit_hash}...${upstream} | grep -c "^<" )
commits_behind=$(git log --pretty=oneline --topo-order --left-right ${current_commit_hash}...${upstream} | grep -c "^>" )
if [ ${commits_ahead} -gt 0 -a ${commits_behind} -gt 0 ];
then
has_diverged=true
fi
if [ ${commits_ahead} -eq 0 -a ${commits_behind} -gt 0 ];
then
can_fast_forward=true
fi
will_rebase=$(git config --get branch.${current_branch}.rebase 2>/dev/null)
number_of_stashes=$(git stash list | wc -l)
if [[ ${number_of_stashes} -gt 0 ]]; then has_stashes=true; else has_stashes=false; fi
else
is_on_a_tag=false
2013-09-02 02:49:50 -04:00
fi
2013-09-03 02:35:50 -04:00
2013-09-02 02:49:50 -04:00
if [[ ${is_a_git_repo} == true ]]
then
2013-09-04 16:56:51 -04:00
enrich ${is_a_git_repo} "${is_a_git_repo_symbol}" "${violet}"
enrich ${has_stashes} "${has_stashes_symbol}" "${yellow}"
2013-09-04 16:56:51 -04:00
enrich ${has_untracked_files} "${has_untracked_files_symbol}" "${red}"
enrich ${has_adds} "${has_adds_symbol}" "${yellow}"
2013-09-03 01:47:52 -04:00
2013-09-04 16:56:51 -04:00
enrich ${has_deletions} "${has_deletions_symbol}" "${red}"
enrich ${has_deletions_cached} "${has_deletions_cached_symbol}" "${yellow}"
2013-09-03 01:47:52 -04:00
2013-09-04 16:56:51 -04:00
enrich ${has_modifications} "${has_modifications_symbol}" "${red}"
enrich ${has_modifications_cached} "${has_modifications_cached_symbol}" "${yellow}"
enrich ${ready_to_commit} "${ready_to_commit_symbol}" "${green}"
2013-09-03 01:47:52 -04:00
2013-09-04 16:56:51 -04:00
enrich ${detached} "${detached_symbol}" "${red}"
2013-09-02 16:59:09 -04:00
2013-09-03 17:35:13 -04:00
if [[ ${display_has_upstream} == true ]]; then
enrich ${has_upstream} "${has_upstream_symbol}"
fi
2013-09-02 13:00:26 -04:00
if [[ ${detached} == true ]]
then
if [[ ${just_init} == true ]]; then
2013-09-04 16:56:51 -04:00
PS1="${PS1} ${red}detached"
else
2013-09-03 02:35:50 -04:00
PS1="${PS1} ${on}(${current_commit_hash_abbrev})"
fi
2013-09-02 13:00:26 -04:00
else
2013-09-02 13:15:33 -04:00
if [[ $has_upstream == true ]]
then
if [[ ${will_rebase} == true ]];
then
type_of_upstream="${rebase_tracking_branch_symbol}";
else
type_of_upstream="${merge_tracking_branch_symbol}";
fi
if [[ ${has_diverged} == true ]]; then
PS1="${PS1} -${commits_behind} ${has_diverged_symbol} +${commits_ahead}"
else
if [[ ${commits_behind} -gt 0 ]]; then
PS1="${PS1} ${on} -${commits_behind} ${can_fast_forward_symbol} "
fi
if [[ ${commits_ahead} -gt 0 ]]; then
PS1="${PS1} ${on} ${should_push_symbol} +${commits_ahead}"
fi
fi
PS1="${PS1} (${green}${current_branch}${reset} ${type_of_upstream} ${upstream//\/$current_branch/})"
2013-09-02 13:15:33 -04:00
else
PS1="${PS1} ${on}(${green}${current_branch}${reset})"
2013-09-02 13:15:33 -04:00
fi
2013-09-02 13:00:26 -04:00
fi
2013-09-05 16:12:34 -04:00
if [[ ${display_tag} == true ]]; then
PS1="${PS1} ${yellow}${is_on_a_tag_symbol}${reset}"
fi
if [ ${display_tag_name} == true -a ${is_on_a_tag} == true ];
then
PS1="${PS1} ${yellow}[${tag_at_current_commit}]${reset}"
fi
fi
if [ ${two_lines} == true -a ${is_a_git_repo} == true ];
then
break="\n";
else
break="";
2013-09-02 02:49:50 -04:00
fi
2013-09-03 02:35:50 -04:00
PS1="${PS1}${reset}${break}${finally}"
}
PROMPT_COMMAND=build_prompt
2013-09-03 02:35:50 -04:00