1
0
mirror of https://github.com/drewcassidy/dotfiles synced 2024-09-01 18:24:06 +00:00

add fish macro for cd and ls

This commit is contained in:
Andrew Cassidy 2018-02-10 11:18:00 -08:00
parent 7a5fb0e621
commit 08590a9116
No known key found for this signature in database
GPG Key ID: 963017B38FD477A1

View File

@ -0,0 +1,4 @@
function cl --description 'change dir and list contents'
cd $argv;
ls;
end