From a48e4eaf4f40d644025dee0707c379a2b8093cdb Mon Sep 17 00:00:00 2001 From: xylous Date: Fri, 18 Jun 2021 23:45:11 +0300 Subject: [PATCH] Fix spacing --- gitstatus.plugin.zsh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gitstatus.plugin.zsh b/gitstatus.plugin.zsh index 573ea96..7160754 100755 --- a/gitstatus.plugin.zsh +++ b/gitstatus.plugin.zsh @@ -108,9 +108,9 @@ function get_differences_between_remote_and_local() local ahead="" behind="" (( $commits_ahead > 0 )) \ - && ahead="↑$commits_ahead" + && ahead=" ↑$commits_ahead" (( $commits_behind > 0 )) \ - && behind="↓$commits_behind" + && behind=" ↓$commits_behind " typeset -g REPLY="$ahead $behind" return 0