From bea23e4341144e9d1547d413d5e81627fdffab27 Mon Sep 17 00:00:00 2001 From: Victor Westerlund Date: Wed, 4 Dec 2024 13:45:29 +0000 Subject: [PATCH] fix: run `l` after `cdl` instead of `ll` (#5) `cdl` is the "change dir and list" and `cdll` is "change dir and list hidden" Reviewed-on: https://codeberg.org/vlw/dotfiles/pulls/5 --- .bash_aliases | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.bash_aliases b/.bash_aliases index 91f9eec..b42686d 100644 --- a/.bash_aliases +++ b/.bash_aliases @@ -10,12 +10,12 @@ alias ll="ls -lah" # cd + cdl () { cd -P -- "$1" && - ll + l } cdll () { cp -P -- "$1" && - lll + ll } # Create standard git WIP commit with timestamps