Parcourir la source

fix to use builtin when in bash

pull/1/head
10sr il y a 11 ans
Parent
révision
1e5ee7cecf
1 fichiers modifiés avec 11 ajouts et 19 suppressions
  1. +11
    -19
      shrc

+ 11
- 19
shrc Voir le fichier

@@ -367,25 +367,17 @@ then
test -x /usr/bin/locate && alias locate="/usr/bin/locate"
fi

if $inzsh
then
# somehow not work
# typeset -ga chpwd_functions
# chpwd_functions+=pwd

# chpwd(){
# pwd
# }
cd(){
builtin cd "$@"
pwd
}
else
cd(){
command cd "$@"
pwd
}
fi
# somehow not work
# typeset -ga chpwd_functions
# chpwd_functions+=pwd

# chpwd(){
# pwd
# }
cd(){
builtin cd "$@"
pwd
}

# pad
alias pad=notepad


Chargement…
Annuler
Enregistrer