From 40aabe81bc86eade63192171214aa984785abace Mon Sep 17 00:00:00 2001 From: Robert Kmiec Date: Mon, 3 Jun 2019 11:40:37 +0200 Subject: [PATCH] fish: fix mark function for recent version --- .config/fish/functions/mark.fish | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/fish/functions/mark.fish b/.config/fish/functions/mark.fish index 9ae098a..7a50c89 100644 --- a/.config/fish/functions/mark.fish +++ b/.config/fish/functions/mark.fish @@ -1,4 +1,4 @@ function mark - eval printf "\%0{$COLUMNS}d" | sed -e "s/0/=/g" | lolcat - eval printf "\%0{$COLUMNS}d" | sed -e "s/0/=/g" | lolcat + eval printf "%0"$COLUMNS"d" | sed -e "s/0/=/g" | lolcat + eval printf "%0"$COLUMNS"d" | sed -e "s/0/=/g" | lolcat end