dotfiles/.config/fish/functions/cl.fish

5 lines
100 B
Fish

function cl --wraps=cd --description 'cd, ls, clear'
cd $argv; or return 1
clear
ls
end