From 58862edf81a852b5fb24468d7b982925fe7bded2 Mon Sep 17 00:00:00 2001 From: Ian Keane Date: Sat, 25 Jun 2022 11:47:03 -0400 Subject: [PATCH] Add extra space into 'now' function --- dotfiles/fish/.config/fish/functions/now.fish | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dotfiles/fish/.config/fish/functions/now.fish b/dotfiles/fish/.config/fish/functions/now.fish index 56f9503..11e8731 100644 --- a/dotfiles/fish/.config/fish/functions/now.fish +++ b/dotfiles/fish/.config/fish/functions/now.fish @@ -1,3 +1,3 @@ -function now --wraps='date +%a%l:%M%p' --description 'alias now date +%a%l:%M%p' - date +%a%l:%M%p $argv; +function now --wraps='date +%a%l:%M%p' --wraps=date\ \'+\%a\ \%l:\%M\%p\' --description alias\ now\ date\ \'+\%a\ \%l:\%M\%p\' + date '+%a %l:%M%p' $argv; end