diff options
author | Marc Cornellà <marc.cornella@live.com> | 2020-10-09 15:03:03 +0200 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2020-10-09 15:03:03 +0200 |
commit | fc6c9ca4b40ee1c9ba7fb4b1c8862fb54a8cb1f6 (patch) | |
tree | c4a0ecad8c604ce3885d646d2970b7d9bfdb5615 /lib/cli.zsh | |
parent | 1bb402190d53c118f47a0851f5714dd4faa52809 (diff) | |
download | zsh-fc6c9ca4b40ee1c9ba7fb4b1c8862fb54a8cb1f6.tar.gz zsh-fc6c9ca4b40ee1c9ba7fb4b1c8862fb54a8cb1f6.tar.bz2 zsh-fc6c9ca4b40ee1c9ba7fb4b1c8862fb54a8cb1f6.zip |
lib: fix formatting in `omz pr clean` CLI command
Diffstat (limited to 'lib/cli.zsh')
-rw-r--r-- | lib/cli.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/cli.zsh b/lib/cli.zsh index 0c0f3f623..5d6c31aef 100644 --- a/lib/cli.zsh +++ b/lib/cli.zsh @@ -175,7 +175,7 @@ function _omz::pr::clean { # Check if there are PR branches local fmt branches - fmt="%(align:19,right)%(color:bold blue)%(refname:short)%(end)%(color:reset) %(color:dim bold red)%(objectname:short)%(color:reset) %(color:yellow)%(contents:subject)" + fmt="%(color:bold blue)%(align:18,right)%(refname:short)%(end)%(color:reset) %(color:dim bold red)%(objectname:short)%(color:reset) %(color:yellow)%(contents:subject)" branches="$(command git for-each-ref --sort=-committerdate --color --format="$fmt" "refs/heads/ohmyzsh/pull-*")" # Exit if there are no PR branches |