From d577f9b318be96f9c2ab4a076fc8906d2b3dd308 Mon Sep 17 00:00:00 2001 From: Paul Irish Date: Fri, 11 Oct 2019 12:33:33 -0700 Subject: [PATCH] drop the two column rendering --- git-recent | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/git-recent b/git-recent index 495970c..1f298b6 100755 --- a/git-recent +++ b/git-recent @@ -41,15 +41,14 @@ else fi format="\ -%(HEAD) \ -$branch|\ -%(color:bold red)%(objectname:short)%(color:reset) \ +$branch %(HEAD)\ + + %(color:bold red)%(objectname:short)%(color:reset) \ %(color:bold green)(%(committerdate:relative))%(color:reset) \ %(color:bold blue)%(authorname)%(color:reset) \ $upstream_deets -$spacer|\ -%(contents:subject) -$spacer|" + %(contents:subject) +" lessopts="--tabs=4 --quit-if-one-screen --RAW-CONTROL-CHARS --no-init" @@ -59,7 +58,6 @@ git for-each-ref \ --sort=-committerdate \ "refs/heads/" \ --format="$format" \ - | column -ts '|' \ | less "$lessopts" # The above command: