X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=.shellrc;h=051889d2a64e80a1ceded88d457126f8081809cf;hb=e862b45b17202fb9d44efdbdf7afa5c1b408089b;hp=0cfd207e9cf22601f7ea0de7d66b421c2073b5f5;hpb=442bb340cd83587f565c05cb576c9ea186131923;p=dotfiles.git diff --git a/.shellrc b/.shellrc index 0cfd207..051889d 100644 --- a/.shellrc +++ b/.shellrc @@ -74,7 +74,7 @@ if test -n "$BASH_VERSION"; then has_completion() { return 0; } if [ -z "$BASH_COMPLETION_COMPAT_DIR" ]; then if [ "$SHELL" = /bin/bash ]; then - if [ -d /usr/share/bash_completion ]; then + if [ -d /usr/share/bash-completion ]; then . /usr/share/bash-completion/bash_completion has_completion() { [ -r /usr/share/bash-completion/completions/$1 ]; } elif [ -f /etc/bash_completion ]; then @@ -134,7 +134,7 @@ if test -n "$BASH_VERSION"; then delegate_completion make m delegate_completion ping p - delegate_completion rsync r + delegate_completion rsync r rsync_cgmn rsync_cgmn_recode delegate_completion ssh s delegate_completion wget wget-m wget-wrapper ww @@ -164,6 +164,11 @@ if test -n "$BASH_VERSION"; then . "$VIRTUAL_ENV/bin/activate" fi + # Clean up python virtual environment on exit + # See https://virtualenvwrapper.readthedocs.io/en/latest/tips.html#clean-up-environments-on-exit + + trap '[ "$VIRTUAL_ENV" ] && deactivate' EXIT + elif test -n "$KSH_VERSION" -o -n "$FCEDIT"; then back() { cd - "$@"; } j() { jobs; }