]> git.phdru.name Git - dotfiles.git/blob - .shellrc
.shellrc: add completion for m(ake)
[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    if has_completion wget; then
116       _wget_completion_loader() {
117          _completion_loader wget
118          complete -F _wget wget-m wget-wrapper ww
119          unset _wget_completion_loader
120          return 124
121       }
122       complete -F _wget_completion_loader wget-m wget-wrapper ww
123    fi
124
125    for cmd in distribute ftp lftp r rsync \
126       s scp ssh smbclient tcpdump tshark wireshark; do
127          ! has_completion $cmd && complete -o default -A hostname $cmd;
128    done
129
130    if has_completion rsync; then
131       _rsync_completion_loader() {
132          _completion_loader rsync
133          complete -F _rsync r
134          unset _rsync_completion_loader
135          return 124
136       }
137       complete -F _rsync_completion_loader r
138    fi
139
140    if has_completion ssh; then
141       _ssh_completion_loader() {
142          _completion_loader ssh
143          complete -F _ssh s
144          unset _ssh_completion_loader
145          return 124
146       }
147       complete -F _ssh_completion_loader s
148    fi
149
150    if has_completion make; then
151       _make_completion_loader() {
152          _completion_loader make
153          complete -F _make m
154          unset _make_completion_loader
155          return 124
156       }
157       complete -F _make_completion_loader m
158    fi
159
160    unset has_completion
161
162    complete -A job bg fg j jobs wait
163    complete -A variable unset
164
165    if [ -d "$HOME/lib/config" ]; then
166       complete -W "`cd \"$HOME/lib/config\" && echo *`" include
167    fi
168    complete -W "`echo $BROWSER | sed 's/:/ /g'`" start-browser
169
170    #if type -p pip >/dev/null 2>&1; then
171    #   eval "`pip completion --bash`"
172    #   rm -rf /tmp/pip_build_"$USER"
173    #fi
174
175 elif test -n "$KSH_VERSION" -o -n "$FCEDIT"; then
176    back() { cd - "$@"; }
177    clo() { clear; exit; }
178    j() { jobs; }
179
180 else
181    clo() { clear; exit; }
182 fi
183
184
185 # clear history, clear screen and logout
186 #chlo() { cd; unset HISTFILE; rm -f .sh_history; history -c; clo; }
187
188
189 #Pwd() { pwd | sed "s/.*\/\(.*\)\/\(.*\)\/\(.*\)\/\(.*\)/...\/\2\/\3\/\4/"; }
190 #PWd() { pwd | sed "s/.*\/\(.*\)\/\(.*\)/...\/\2/"; }
191
192
193 psg()   { ps auxw   | grep -i "$@" | grep -v '\(ps auxw\|grep\)'; }
194 pswg()  { ps auxwww | grep -i "$@" | grep -v '\(ps auxw\|grep\)'; }
195
196 # Like pgrep -f
197 pidOf() { ps auxwww | grep -i "$@" | grep -v '\(ps auxw\|grep\|pidOf\|KillAll\)' | awk '{print $2}'; }
198
199 # A kind of pkill/killall
200 KillAll() {
201    if [ -z "$1" -o -n "$3" ]; then
202       echo "Usage: KillAll [-signal] proc_regexp" >&2
203       return 1
204    fi
205    if [ -z "$2" ]; then
206       kill `pidOf "$1"`
207    else
208       kill "$1" `pidOf "$2"`
209    fi
210 }
211
212
213 if test -x /usr/bin/git >/dev/null 2>&1; then
214    # chdir to a remote's directory (if the remote is on the local FS)
215    cdremote() {
216       if [ -z "$1" -o -n "$2" ]; then
217          echo "Usage: cdremote remote_name" >&2
218          return 1
219       fi
220       cd "`git config --get remote.$1.url`"
221    }
222
223    if test -n "$BASH_VERSION"; then
224       # completion for global aliases in .gitconfig
225
226       # fixup rbi rbia rbiap rbip - do refs name completion
227       _git_fixup() { __gitcomp_nl "$(__git_refs)" ; }
228       _git_rbi() { __gitcomp_nl "$(__git_refs)" ; }
229       _git_rbia() { __gitcomp_nl "$(__git_refs)" ; }
230       _git_rbiap() { __gitcomp_nl "$(__git_refs)" ; }
231       _git_rbip() { __gitcomp_nl "$(__git_refs)" ; }
232       #
233       # push-to-all-remotes - do branch name completion
234       _git_push_to_all_remotes() { __gitcomp_nl "$(__git_heads)" ; }
235
236       # list remotes with URLs matching a regexp
237       _list_remotes() {
238          if [ -z "$1" -o -n "$2" ]; then
239             echo "Usage: _list_remotes remote_regexp" >&2
240             return 1
241          fi
242          GIT_REMOTES=""
243          local remote
244          for remote in `git remote`; do
245             if git config --get remote.$remote.url | grep -q "$1"; then
246                GIT_REMOTES="$GIT_REMOTES $remote"
247             fi
248          done
249       }
250
251       # completion for cdremote and git-open - list remotes with a pattern
252       _list_remotes_completion() {
253          local cur="${COMP_WORDS[COMP_CWORD]}";
254          _list_remotes "$1"
255          COMPREPLY=(`compgen -W "$GIT_REMOTES" -- "$cur"`)
256          unset GIT_REMOTES
257       }
258
259       # completion for cdremote - list remotes with directories as URLs
260       _cdremote_complete() {
261          _list_remotes_completion '^\(/\|\.\./\)' # (/ or ../ at the beginning)
262       }
263
264       complete -F _cdremote_complete cdremote
265
266       # completion for git-open - list remotes with http(s) URLs
267       _git_open() {
268          _list_remotes_completion '^http\(s\)\?://'
269       }
270
271       complete -F _git_open git-open
272    fi
273 fi
274
275
276 include() {
277    cfg="$1"
278    if [ -f "./$cfg" -a -r "./$cfg" ]; then
279       echo "Reading config file \`$cfg'" 1>&2
280       . "./$cfg"
281    elif [ -f "$HOME/lib/config/$cfg" -a -r "$HOME/lib/config/$cfg" ]; then
282       echo "Reading config file \`$HOME/lib/config/$cfg'" 1>&2
283       . "$HOME/lib/config/$cfg"
284    else
285       echo "Cannot find config file \`$cfg'" 1>&2
286    fi
287 }
288
289
290 mc() {
291    if test -n "$BASH_VERSION"; then
292       MC_SAVE_OPS1="$OPS1"
293       OPS1="\u@\h "
294    fi
295
296    if [ -n "$SLOWTERM" ]; then
297       MC_SLOW="--slow"
298    fi
299
300    case "$TERM" in
301       screen*) # screen, screen.rxvt
302          if [ "$TERM" = screen.rxvt ]; then
303             MC_SAVE_TERM="$TERM"
304             TERM=rxvt
305          fi
306          MC_XTERM="-x"
307       ;;
308    esac
309
310    #TMPDIR="$HOME"/tmp
311    #export TMPDIR
312
313    MC_FOUND=NO
314
315    for wrapper in \
316          /usr/local/share/mc/bin/mc-wrapper.sh \
317          /usr/local/libexec/mc/mc-wrapper.sh \
318          /usr/share/mc/bin/mc-wrapper.sh; do
319       if [ -r $wrapper ]; then
320          . $wrapper $MC_SLOW $MC_XTERM "$@"
321          rc=$?
322          MC_FOUND=YES
323          break
324       fi
325    done
326
327    if [ $MC_FOUND = NO ]; then
328       for mc in /usr/local/bin/mc /usr/bin/mc; do
329          if [ -x $mc ]; then
330             MC_TMP_DIR="${TMPDIR-/tmp}/mc-$USER"
331             if [ ! -d MC_TMP_DIR="${TMPDIR-/tmp}/mc-$USER" ]; then
332                MC_TMP_DIR="${TMPDIR-/tmp}"
333             fi
334             MC_PWD_FILE="$MC_TMP_DIR/mc.pwd.$$"
335             mc_type="`mc_type.py $mc`"
336             if [ "$mc_type" = old ]; then
337                $mc -P $MC_SLOW $MC_XTERM "$@" > "$MC_PWD_FILE"
338             elif [ "$mc_type" = new ]; then
339                $mc -P "$MC_PWD_FILE" $MC_SLOW $MC_XTERM "$@"
340             else
341                continue
342             fi
343             rc=$?
344             MC_FOUND=YES
345             cd "`cat \"$MC_PWD_FILE\"`" && /bin/rm "$MC_PWD_FILE"
346             break
347          fi
348       done
349    fi
350
351    if [ $MC_FOUND = NO ]; then
352       echo "Cannot find mc-wrapper.sh or mc" >&2
353       rc=1
354    fi
355
356    [ -n "$MC_SAVE_OPS1" ] && OPS1="$MC_SAVE_OPS1"
357    [ -n "$MC_SAVE_TERM" ] && TERM="$MC_SAVE_TERM"
358    unset MC_FOUND MC_PWD_FILE MC_SAVE_OPS1 MC_SAVE_TERM \
359          MC_SLOW MC_TMP_DIR MC_XTERM
360
361    return $rc
362 }
363
364
365 mkcd() {
366    if [ $# -ne 1 ]; then
367       echo "Usage: mkcd directory_name" >&2
368    elif [ -d "$1" ]; then
369       cd "$1"
370    elif [ -e "$1" ]; then
371       echo "Error: $1 is a file" >&2
372    else
373       mkdir -p "$1" && cd "$1"
374    fi
375 }
376
377
378 if which tmux >/dev/null 2>&1; then
379    tmux() {
380       case "$TERM" in
381          rxvt)
382             TERM=rxvt-unicode command tmux "$@"
383          ;;
384
385          *)
386             command tmux "$@"
387          ;;
388       esac
389    }
390 fi
391
392
393 #if which pyenv >/dev/null 2>&1; then
394 #   eval "`pyenv init -`"
395 #   eval "`pyenv virtualenv-init -`"
396 #fi
397
398 if [ -f /usr/local/bin/virtualenvwrapper_lazy.sh ]; then
399    source /usr/local/bin/virtualenvwrapper_lazy.sh
400 fi
401
402
403 if [ "$SHLVL" -eq 1 ] && which startx >/dev/null 2>&1; then
404    X() { startx >> .Xserver.log 2>&1; cyr; }
405 fi
406
407 x() { exit; }