]> git.phdru.name Git - dotfiles.git/blob - .shellrc
.shellrc: refactor separate completion loaders into one
[dotfiles.git] / .shellrc
1 #
2 # $HOME/.shellrc
3 #
4
5 # ~/.bashrc: executed by bash(1) for non-login shells.
6 # see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
7 # for examples
8
9 # If not running interactively, don't do anything
10 case $- in
11     *i*) ;;
12       *) return;;
13 esac
14
15 # Stop if non-interactive shell
16 # [ -z "$PS1" ] && return
17
18 if test -n "$BASH_VERSION"; then
19    # append to the history file, don't overwrite it
20    shopt -s histappend
21
22    # check the window size after each command and, if necessary,
23    # update the values of LINES and COLUMNS.
24    shopt -s checkwinsize
25
26    # If set, the pattern "**" used in a pathname expansion context will
27    # match all files and zero or more directories and subdirectories.
28    #shopt -s globstar
29 fi
30
31
32 #if [ -x /usr/bin/dircolors ]; then
33 #   # I don't like these aliases - they work only in command line
34 #   # but not in scripts I run from command line.
35 #   # Color parameters must be passed via environment.
36 #   # So instead I put them in shell scripts in ~/bin.
37 #   alias ls='ls --color=auto'
38 #   alias dir='dir --color=auto'
39 #   alias vdir='vdir --color=auto'
40 #
41 #   alias grep='grep --color=auto'
42 #   alias fgrep='fgrep --color=auto'
43 #   alias egrep='egrep --color=auto'
44 #
45 #   alias dmesg='dmesg --human'
46 #fi
47
48
49 case "$HOME" in
50    /home/*)
51       if [ -L /home ]; then
52          START_DIR="`pwd`" &&
53          cd "$HOME" &&
54          HOME="`pwd`" &&
55          cd "$START_DIR"
56       fi
57    ;;
58 esac
59
60
61 OPS1="$OPS1\\$"
62 PS1="$OPS1 "
63
64
65 if test -n "$BASH_VERSION"; then
66    [ "`type -t ls`" = alias ] && unalias ls
67    [ "`type -t ll`" = alias ] && unalias ll
68    [ "`type -t mc`" = alias ] && unalias mc
69
70    back() { cd - "$@"; }
71    clo() { clear; logout; }
72    functions() { typeset -f "$@"; }
73    j() { jobs; }
74
75    if [ -z "$BASH_COMPLETION_COMPAT_DIR" ]; then
76       if [ "$SHELL" = /bin/bash ]; then
77          if [ -f /etc/bash_completion ]; then
78             . /etc/bash_completion
79          elif [ -d /etc/bash_completion.d ]; then
80             . /etc/bash_completion.d/*
81          fi
82       elif [ "$SHELL" = /usr/local/bin/bash ]; then
83          if [ -d /usr/local/etc/bash_completion.d ]; then
84             . /usr/local/etc/bash_completion.d/*
85          fi
86       else
87          echo "Unknown OS type, canot source bash_completion" >&2
88       fi
89    fi
90
91    has_completion() { return 0; }
92    if [ "$SHELL" = /bin/bash ]; then
93       if [ -d /etc/bash_completion.d -o -d /usr/share/bash-completion/completions ]; then
94          has_completion() { [ -r /etc/bash_completion.d/$1 -o -r /usr/share/bash-completion/completions/$1 ]; }
95       fi
96    elif [ "$SHELL" = /usr/local/bin/bash ]; then
97       if [ -d /usr/local/etc/bash_completion.d ]; then
98          has_completion() { [ -r /usr/local/etc/bash_completion.d/$1 ]; }
99       fi
100    fi
101
102    for cmd in builtin cgmem_nice command dbus-launch exec \
103       killall man nice nohup pidof pidOf KillAll pgrep pkill psg pswg su sudo \
104       time whence whereis which xargs; do
105          ! has_completion $cmd && complete -o default -A command $cmd
106    done
107
108    for cmd in dig host mtr nslookup nc netcat nmap p ping ping6 socat \
109       telnet t tt \
110       tcptraceroute tcptraceroute6 tracert tracert6 traceroute traceroute6 \
111       whois wget wget-m wget-wrapper ww; do
112          ! has_completion $cmd && complete -A hostname $cmd
113    done
114
115    for cmd in distribute ftp lftp r rsync \
116       s scp ssh smbclient tcpdump tshark wireshark; do
117          ! has_completion $cmd && complete -o default -A hostname $cmd;
118    done
119
120    delegate_completion() {
121       local prog completion_f programs
122       prog="$1"
123       completion_f="$2"
124       shift; shift
125       programs="$@"
126       if has_completion "$prog"; then
127          eval "_${prog}_completion_loader() {
128             _completion_loader $prog
129             complete -F $completion_f $programs
130             unset _${prog}_completion_loader
131             return 124
132          }"
133          complete -F _"$prog"_completion_loader $programs
134       fi
135    }
136
137    delegate_completion make _make m
138    delegate_completion rsync _rsync r
139    delegate_completion ssh _ssh s
140    delegate_completion wget _wget wget-m wget-wrapper ww
141
142    unset has_completion delegate_completion
143
144    complete -A job bg fg j jobs wait
145    complete -A variable -A function unset
146
147    if [ -d "$HOME/lib/config" ]; then
148       complete -W "`cd \"$HOME/lib/config\" && echo *`" include
149    fi
150    complete -W "`echo $BROWSER | sed 's/:/ /g'`" start-browser
151
152    #if type -p pip >/dev/null 2>&1; then
153    #   eval "`pip completion --bash`"
154    #   rm -rf /tmp/pip_build_"$USER"
155    #fi
156
157 elif test -n "$KSH_VERSION" -o -n "$FCEDIT"; then
158    back() { cd - "$@"; }
159    clo() { clear; exit; }
160    j() { jobs; }
161
162 else
163    clo() { clear; exit; }
164 fi
165
166
167 # clear history, clear screen and logout
168 #chlo() { cd; unset HISTFILE; rm -f .sh_history; history -c; clo; }
169
170
171 #Pwd() { pwd | sed "s/.*\/\(.*\)\/\(.*\)\/\(.*\)\/\(.*\)/...\/\2\/\3\/\4/"; }
172 #PWd() { pwd | sed "s/.*\/\(.*\)\/\(.*\)/...\/\2/"; }
173
174
175 psg()   { ps auxw   | grep -i "$@" | grep -v '\(ps auxw\|grep\)'; }
176 pswg()  { ps auxwww | grep -i "$@" | grep -v '\(ps auxw\|grep\)'; }
177
178 # Like pgrep -f
179 pidOf() { ps auxwww | grep -i "$@" | grep -v '\(ps auxw\|grep\|pidOf\|KillAll\)' | awk '{print $2}'; }
180
181 # A kind of pkill/killall
182 KillAll() {
183    if [ -z "$1" -o -n "$3" ]; then
184       echo "Usage: KillAll [-signal] proc_regexp" >&2
185       return 1
186    fi
187    if [ -z "$2" ]; then
188       kill `pidOf "$1"`
189    else
190       kill "$1" `pidOf "$2"`
191    fi
192 }
193
194
195 if test -x /usr/bin/git >/dev/null 2>&1; then
196    # chdir to a remote's directory (if the remote is on the local FS)
197    cdremote() {
198       if [ -z "$1" -o -n "$2" ]; then
199          echo "Usage: cdremote remote_name" >&2
200          return 1
201       fi
202       cd "`git config --get remote.$1.url`"
203    }
204
205    if test -n "$BASH_VERSION"; then
206       # completion for global aliases in .gitconfig
207
208       # fixup rbi rbia rbiap rbip - do refs name completion
209       _git_fixup() { __gitcomp_nl "$(__git_refs)" ; }
210       _git_rbi() { __gitcomp_nl "$(__git_refs)" ; }
211       _git_rbia() { __gitcomp_nl "$(__git_refs)" ; }
212       _git_rbiap() { __gitcomp_nl "$(__git_refs)" ; }
213       _git_rbip() { __gitcomp_nl "$(__git_refs)" ; }
214       #
215       # push-to-all-remotes - do branch name completion
216       _git_push_to_all_remotes() { __gitcomp_nl "$(__git_heads)" ; }
217
218       # list remotes with URLs matching a regexp
219       _list_remotes() {
220          if [ -z "$1" -o -n "$2" ]; then
221             echo "Usage: _list_remotes remote_regexp" >&2
222             return 1
223          fi
224          GIT_REMOTES=""
225          local remote
226          for remote in `git remote`; do
227             if git config --get remote.$remote.url | grep -q "$1"; then
228                GIT_REMOTES="$GIT_REMOTES $remote"
229             fi
230          done
231       }
232
233       # completion for cdremote and git-open - list remotes with a pattern
234       _list_remotes_completion() {
235          local cur="${COMP_WORDS[COMP_CWORD]}";
236          _list_remotes "$1"
237          COMPREPLY=(`compgen -W "$GIT_REMOTES" -- "$cur"`)
238          unset GIT_REMOTES
239       }
240
241       # completion for cdremote - list remotes with directories as URLs
242       _cdremote_complete() {
243          _list_remotes_completion '^\(/\|\.\./\)' # (/ or ../ at the beginning)
244       }
245
246       complete -F _cdremote_complete cdremote
247
248       # completion for git-open - list remotes with http(s) URLs
249       _git_open() {
250          _list_remotes_completion '^http\(s\)\?://'
251       }
252
253       complete -F _git_open git-open
254    fi
255 fi
256
257
258 include() {
259    cfg="$1"
260    if [ -f "./$cfg" -a -r "./$cfg" ]; then
261       echo "Reading config file \`$cfg'" 1>&2
262       . "./$cfg"
263    elif [ -f "$HOME/lib/config/$cfg" -a -r "$HOME/lib/config/$cfg" ]; then
264       echo "Reading config file \`$HOME/lib/config/$cfg'" 1>&2
265       . "$HOME/lib/config/$cfg"
266    else
267       echo "Cannot find config file \`$cfg'" 1>&2
268    fi
269 }
270
271
272 mc() {
273    if test -n "$BASH_VERSION"; then
274       MC_SAVE_OPS1="$OPS1"
275       OPS1="\u@\h "
276    fi
277
278    if [ -n "$SLOWTERM" ]; then
279       MC_SLOW="--slow"
280    fi
281
282    case "$TERM" in
283       screen*) # screen, screen.rxvt
284          if [ "$TERM" = screen.rxvt ]; then
285             MC_SAVE_TERM="$TERM"
286             TERM=rxvt
287          fi
288          MC_XTERM="-x"
289       ;;
290    esac
291
292    #TMPDIR="$HOME"/tmp
293    #export TMPDIR
294
295    MC_FOUND=NO
296
297    for wrapper in \
298          /usr/local/share/mc/bin/mc-wrapper.sh \
299          /usr/local/libexec/mc/mc-wrapper.sh \
300          /usr/share/mc/bin/mc-wrapper.sh; do
301       if [ -r $wrapper ]; then
302          . $wrapper $MC_SLOW $MC_XTERM "$@"
303          rc=$?
304          MC_FOUND=YES
305          break
306       fi
307    done
308
309    if [ $MC_FOUND = NO ]; then
310       for mc in /usr/local/bin/mc /usr/bin/mc; do
311          if [ -x $mc ]; then
312             MC_TMP_DIR="${TMPDIR-/tmp}/mc-$USER"
313             if [ ! -d MC_TMP_DIR="${TMPDIR-/tmp}/mc-$USER" ]; then
314                MC_TMP_DIR="${TMPDIR-/tmp}"
315             fi
316             MC_PWD_FILE="$MC_TMP_DIR/mc.pwd.$$"
317             mc_type="`mc_type.py $mc`"
318             if [ "$mc_type" = old ]; then
319                $mc -P $MC_SLOW $MC_XTERM "$@" > "$MC_PWD_FILE"
320             elif [ "$mc_type" = new ]; then
321                $mc -P "$MC_PWD_FILE" $MC_SLOW $MC_XTERM "$@"
322             else
323                continue
324             fi
325             rc=$?
326             MC_FOUND=YES
327             cd "`cat \"$MC_PWD_FILE\"`" && /bin/rm "$MC_PWD_FILE"
328             break
329          fi
330       done
331    fi
332
333    if [ $MC_FOUND = NO ]; then
334       echo "Cannot find mc-wrapper.sh or mc" >&2
335       rc=1
336    fi
337
338    [ -n "$MC_SAVE_OPS1" ] && OPS1="$MC_SAVE_OPS1"
339    [ -n "$MC_SAVE_TERM" ] && TERM="$MC_SAVE_TERM"
340    unset MC_FOUND MC_PWD_FILE MC_SAVE_OPS1 MC_SAVE_TERM \
341          MC_SLOW MC_TMP_DIR MC_XTERM
342
343    return $rc
344 }
345
346
347 mkcd() {
348    if [ $# -ne 1 ]; then
349       echo "Usage: mkcd directory_name" >&2
350    elif [ -d "$1" ]; then
351       cd "$1"
352    elif [ -e "$1" ]; then
353       echo "Error: $1 is a file" >&2
354    else
355       mkdir -p "$1" && cd "$1"
356    fi
357 }
358
359
360 if which tmux >/dev/null 2>&1; then
361    tmux() {
362       case "$TERM" in
363          rxvt)
364             TERM=rxvt-unicode command tmux "$@"
365          ;;
366
367          *)
368             command tmux "$@"
369          ;;
370       esac
371    }
372 fi
373
374
375 #if which pyenv >/dev/null 2>&1; then
376 #   eval "`pyenv init -`"
377 #   eval "`pyenv virtualenv-init -`"
378 #fi
379
380 if [ -f /usr/local/bin/virtualenvwrapper_lazy.sh ]; then
381    source /usr/local/bin/virtualenvwrapper_lazy.sh
382 fi
383
384
385 if [ "$SHLVL" -eq 1 ] && which startx >/dev/null 2>&1; then
386    X() { startx >> .Xserver.log 2>&1; cyr; }
387 fi
388
389 x() { exit; }