X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=.shellrc;h=b0ba00f8576537101d93af2989958dd7aa73aec5;hb=c62f4a398bfa5262b1fc8fa46ef88285933f79f8;hp=fa8fa9536ec3a53614f2054cfd3766f76f2cb6fc;hpb=59b5065470238a87b4ea86a620d55d17b604c5e8;p=dotfiles.git diff --git a/.shellrc b/.shellrc index fa8fa95..b0ba00f 100644 --- a/.shellrc +++ b/.shellrc @@ -83,7 +83,7 @@ if test -n "$BASH_VERSION"; then . /usr/local/etc/bash_completion.d/* fi else - echo "Unknown OS type, canot source bash_completion" >&2 + echo "Unknown OS type, cannot source bash_completion" >&2 fi fi @@ -117,26 +117,26 @@ if test -n "$BASH_VERSION"; then done delegate_completion() { - local prog completion_f programs - prog="$1" - completion_f="$2" - shift; shift - programs="$@" - if has_completion "$prog"; then + local prog programs + prog=$1 + if has_completion $prog; then + shift + programs="$@" eval "_${prog}_completion_loader() { _completion_loader $prog - complete -F $completion_f $programs + complete -F _$prog $programs unset _${prog}_completion_loader return 124 }" - complete -F _"$prog"_completion_loader $programs + complete -F _${prog}_completion_loader $programs fi } - delegate_completion make _make m - delegate_completion rsync _rsync r - delegate_completion ssh _ssh s - delegate_completion wget _wget wget-m wget-wrapper ww + delegate_completion make m + delegate_completion ping p + delegate_completion rsync r + delegate_completion ssh s + delegate_completion wget wget-m wget-wrapper ww unset has_completion delegate_completion @@ -153,6 +153,17 @@ if test -n "$BASH_VERSION"; then # rm -rf /tmp/pip_build_"$USER" #fi + #if which pyenv >/dev/null 2>&1; then + # eval "`pyenv init -`" + # eval "`pyenv virtualenv-init -`" + #fi + + 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; } @@ -343,13 +354,6 @@ if which tmux >/dev/null 2>&1; then fi -#if which pyenv >/dev/null 2>&1; then -# eval "`pyenv init -`" -# eval "`pyenv virtualenv-init -`" -#fi - -source virtualenvwrapper_lazy.sh 2>/dev/null - if [ "$SHLVL" -eq 1 ] && which startx >/dev/null 2>&1; then X() { startx >> .Xserver.log 2>&1; cyr; } fi