Skip to content

Instantly share code, notes, and snippets.

@jaseg
Created November 19, 2015 13:38
Show Gist options
  • Save jaseg/e1ff57a92b8bb18e6976 to your computer and use it in GitHub Desktop.
Save jaseg/e1ff57a92b8bb18e6976 to your computer and use it in GitHub Desktop.
cd.fish
# 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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment