X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=.shellrc;h=ff0e12710ff3fc9a9c74cf8083897a9f38d1fb53;hb=b434e9c5186defd88e7d7529f915d7b62be2e20c;hp=6e2fa0532e4fd55ade495f8137b556b25e1dc78a;hpb=201cec894446caedb826806dce9d6234c0705e64;p=dotfiles.git diff --git a/.shellrc b/.shellrc index 6e2fa05..ff0e127 100644 --- a/.shellrc +++ b/.shellrc @@ -76,14 +76,18 @@ if test -n "$BASH_VERSION"; then if [ -f /etc/bash_completion ]; then . /etc/bash_completion elif [ -d /etc/bash_completion.d ]; then - . /etc/bash_completion.d/* + for _compf in /etc/bash_completion.d/*; do + . $_compf + done fi elif [ "$SHELL" = /usr/local/bin/bash ]; then if [ -d /usr/local/etc/bash_completion.d ]; then - . /usr/local/etc/bash_completion.d/* + for _compf in /usr/local/etc/bash_completion.d/*; do + . $_compf + done fi else - echo "Unknown OS type, canot source bash_completion" >&2 + echo "Unknown OS type, cannot source bash_completion" >&2 fi fi @@ -117,26 +121,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 +157,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" ] && ! type deactivate >/dev/null 2>&1; then + . "$VIRTUAL_ENV/bin/activate" + fi + elif test -n "$KSH_VERSION" -o -n "$FCEDIT"; then back() { cd - "$@"; } j() { jobs; } @@ -166,15 +181,27 @@ chlo() { clear; cd; >$HISTFILE; unset HISTFILE; history -c; logout || exit; } if test -x /usr/bin/git >/dev/null 2>&1; then # chdir to a remote's directory (if the remote is on the local FS) cdremote() { - if [ -z "$1" -o -n "$2" ]; then - echo "Usage: cdremote remote_name" >&2 + if [ -z "$1" ]; then + branch="`git rev-parse --abbrev-ref HEAD`" + remote="`git config --get branch.$branch.remote`" + elif [ -n "$2" ]; then + echo "Usage: cdremote [remote_name]" >&2 return 1 + else + remote="$1" fi - cd "`git config --get remote.$1.url`" + + if [ -z "$remote" ]; then + echo "Cannot find remote for branch $branch" >&2 + echo "Usage: cdremote [remote_name]" >&2 + return 1 + fi + + cd "`git config --get remote.$remote.url`" } if test -n "$BASH_VERSION"; then - # completion for global aliases in .gitconfig + # completion for aliases in global .gitconfig # fixup rbi rbia rbiap rbip - do refs name completion _git_fixup() { __gitcomp_nl "$(__git_refs)" ; } @@ -343,16 +370,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 - -if [ -f /usr/local/bin/virtualenvwrapper_lazy.sh ]; then - source /usr/local/bin/virtualenvwrapper_lazy.sh -fi - - if [ "$SHLVL" -eq 1 ] && which startx >/dev/null 2>&1; then X() { startx >> .Xserver.log 2>&1; cyr; } fi