From 1bd66ca7e6815a56f9fecd3b5d438dba77dd1bed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20La=C3=ADn?= Date: Mon, 11 Dec 2023 23:04:11 +0100 Subject: [PATCH] =?UTF-8?q?=E2=99=BB=EF=B8=8F=20refactor(fish):=20cl=20is?= =?UTF-8?q?=20now=20a=20function=20for=20clear=20instead=20of=20cd=20and?= =?UTF-8?q?=20ls?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .config/fish/functions/cl.fish | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/fish/functions/cl.fish b/.config/fish/functions/cl.fish index f23dc493..89dd15db 100644 --- a/.config/fish/functions/cl.fish +++ b/.config/fish/functions/cl.fish @@ -1,3 +1,3 @@ -function cl --wraps=clear --wraps='z && l' --description 'alias cl=z && l' - z $argv && l +function cl --wraps=clear --wraps='clear' --description 'alias cl=clear' + clear end