From a2a0b6233fedc0da54b55a8d02657e5c74f8cf8f Mon Sep 17 00:00:00 2001 From: Alexander Bantyev Date: Wed, 14 Sep 2022 01:36:16 +0400 Subject: [PATCH] Remove extraneous space in get_github_status --- profiles/workspace/zsh/p10k.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiles/workspace/zsh/p10k.zsh b/profiles/workspace/zsh/p10k.zsh index f6fc3b5..3f27508 100644 --- a/profiles/workspace/zsh/p10k.zsh +++ b/profiles/workspace/zsh/p10k.zsh @@ -1817,7 +1817,7 @@ | (($result.null//0) + ($result.PENDING//0)) as $running | (($result.SUCCESS//0) + ($result.NEUTRAL//0)) as $success | (($result.FAILURE//0) + ($result.ERROR//0)) as $failure - | if $state == "PENDING" or $state == "EXPECTED" then [" "] elif $state == "SUCCESS" then [""] elif $state == "FAILURE" or $state == "ERROR" then [""] else ["(?)"] end + | if $state == "PENDING" or $state == "EXPECTED" then [""] elif $state == "SUCCESS" then [""] elif $state == "FAILURE" or $state == "ERROR" then [""] else ["(?)"] end + if $waiting > 0 then ["",$waiting|tostring] else [] end + if $running > 0 then ["",$running|tostring] else [] end + if $success > 0 then ["",$success|tostring] else [] end