Update function mycd

Change name from cdls

Update cd alias

If cd fails and the first parameter is a file, it will try and open it
in vim
master
Jonathan Hodgson 6 years ago
parent 3b37debbf7
commit a1f45666a3
  1. 23
      shells/functions

@ -34,14 +34,25 @@ function old() {
mv "$1" "$1.old" mv "$1" "$1.old"
} }
function cdls() { function mycd() {
cd "$@" cd "$@" 2> /dev/null
if [ ! $TMUX ]; then if [ $? = 0 ]; then
pwd > ~/.current-folder # If we get here cd was successful
if [ ! $TMUX ]; then
pwd > ~/.current-folder
fi
ls
else
# If we get here, cd was not successful
if [ -f "$1" ]; then
vim "$1"
else
echo "Can't cd"
exit 1
fi
fi fi
ls
} }
alias cd="cdls" alias cd="mycd"
function mkcd() { function mkcd() {
mkdir -p "$1" mkdir -p "$1"

Loading…
Cancel
Save