From 08590a9116e2ba30e03192bf99b3daea72bb219e Mon Sep 17 00:00:00 2001 From: drewcassidy Date: Sat, 10 Feb 2018 11:18:00 -0800 Subject: [PATCH] add fish macro for cd and ls --- fish/.config/fish/functions/cl.fish | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 fish/.config/fish/functions/cl.fish diff --git a/fish/.config/fish/functions/cl.fish b/fish/.config/fish/functions/cl.fish new file mode 100644 index 0000000..f4a382d --- /dev/null +++ b/fish/.config/fish/functions/cl.fish @@ -0,0 +1,4 @@ +function cl --description 'change dir and list contents' + cd $argv; + ls; +end