]> git.phdru.name Git - dotfiles.git/blobdiff - .shellrc
.gitconfig: add (un)assume aliases
[dotfiles.git] / .shellrc
index 130281854e9d4421e36b12bb425c05ae769e547e..55dab97651ff1cc23ee5d3335e279863cbb08605 100644 (file)
--- a/.shellrc
+++ b/.shellrc
@@ -119,10 +119,10 @@ if test -n "$BASH_VERSION"; then
    delegate_completion() {
       local prog completion_f programs
       prog="$1"
-      completion_f="$2"
-      shift; shift
-      programs="$@"
       if has_completion "$prog"; then
+         completion_f="$2"
+         shift; shift
+         programs="$@"
          eval "_${prog}_completion_loader() {
             _completion_loader $prog
             complete -F $completion_f $programs
@@ -161,6 +161,10 @@ if test -n "$BASH_VERSION"; then
 
    source virtualenvwrapper_lazy.sh 2>/dev/null
 
+   #if [ -n "$VIRTUAL_ENV" ]; then
+   #   . "$VIRTUAL_ENV/bin/activate"
+   #fi
+
 elif test -n "$KSH_VERSION" -o -n "$FCEDIT"; then
    back() { cd - "$@"; }
    j() { jobs; }