Initial commit

This commit is contained in:
jaseg 2022-08-15 18:31:22 +02:00
commit 16a7b26fd5
13 changed files with 106 additions and 0 deletions

10
functions/cd.fish Normal file
View file

@ -0,0 +1,10 @@
# Modified cd that also displays the directory's contents if the listing is less than 5 lines long
function cd
if test -n "$argv"
if test -e $argv -a ! -d (realpath $argv)
set argv (dirname $argv)
end
end
builtin cd $argv
and test (ls -C -w $COLUMNS |wc -l) -le 5; and ls
end