From 966f82cb0d4560cad7f18a4cbd0eb742a40d025a Mon Sep 17 00:00:00 2001 From: Hugues Hiegel Date: Fri, 27 Jul 2012 10:26:09 +0200 Subject: [Git] new ffwd-able color + blinking stash.. --- 12_Prompts.zsh | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) (limited to '12_Prompts.zsh') diff --git a/12_Prompts.zsh b/12_Prompts.zsh index 548ab46..5f6f48b 100644 --- a/12_Prompts.zsh +++ b/12_Prompts.zsh @@ -44,14 +44,7 @@ chpwd() if ( __cmd_exists git && test -d .git ) then # Shows tracked branches and modified files - git status | awk ' - BEGIN { YOURBRANCH=0 } - { - if (NR==2 && $0 ~ "^# Your branch ") { YOURBRANCH=1 } - if ((NR>=2 && YOURBRANCH==0) || $0 ~ "^#$") { exit } - if (YOURBRANCH==1) { print $0 } - } - ' | sed 's/^# / /' + git status | sed -n '2{/# Your branch/p};3q' fi } -- cgit v1.2.3