Weed out non-existing directories when loading DIRSTACKFILE
[grml-etc-core.git] / etc / zsh / zshrc
1 # Filename:      /etc/zsh/zshrc
2 # Purpose:       config file for zsh (z shell)
3 # Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
4 # Bug-Reports:   see http://grml.org/bugs/
5 # License:       This file is licensed under the GPL v2.
6 ################################################################################
7 # This file is sourced only for interactive shells. It
8 # should contain commands to set up aliases, functions,
9 # options, key bindings, etc.
10 #
11 # Global Order: zshenv, zprofile, zshrc, zlogin
12 ################################################################################
13
14 # USAGE
15 # If you are using this file as your ~/.zshrc file, please use ~/.zshrc.pre
16 # and ~/.zshrc.local for your own customisations. The former file is read
17 # before ~/.zshrc, the latter is read after it. Also, consider reading the
18 # refcard and the reference manual for this setup, both available from:
19 #     <http://grml.org/zsh/>
20
21 # Contributing:
22 # If you want to help to improve grml's zsh setup, clone the grml-etc-core
23 # repository from git.grml.org:
24 #   git clone git://git.grml.org/grml-etc-core.git
25 #
26 # Make your changes, commit them; use 'git format-patch' to create a series
27 # of patches and send those to the following address via 'git send-email':
28 #   grml-etc-core@grml.org
29 #
30 # Doing so makes sure the right people get your patches for review and
31 # possibly inclusion.
32
33 # zsh-refcard-tag documentation:
34 #   You may notice strange looking comments in this file.
35 #   These are there for a purpose. grml's zsh-refcard can now be
36 #   automatically generated from the contents of the actual configuration
37 #   file. However, we need a little extra information on which comments
38 #   and what lines of code to take into account (and for what purpose).
39 #
40 # Here is what they mean:
41 #
42 # List of tags (comment types) used:
43 #   #a#     Next line contains an important alias, that should
44 #           be included in the grml-zsh-refcard.
45 #           (placement tag: @@INSERT-aliases@@)
46 #   #f#     Next line contains the beginning of an important function.
47 #           (placement tag: @@INSERT-functions@@)
48 #   #v#     Next line contains an important variable.
49 #           (placement tag: @@INSERT-variables@@)
50 #   #k#     Next line contains an important keybinding.
51 #           (placement tag: @@INSERT-keybindings@@)
52 #   #d#     Hashed directories list generation:
53 #               start   denotes the start of a list of 'hash -d'
54 #                       definitions.
55 #               end     denotes its end.
56 #           (placement tag: @@INSERT-hasheddirs@@)
57 #   #A#     Abbreviation expansion list generation:
58 #               start   denotes the beginning of abbreviations.
59 #               end     denotes their end.
60 #           Lines within this section that end in '#d .*' provide
61 #           extra documentation to be included in the refcard.
62 #           (placement tag: @@INSERT-abbrev@@)
63 #   #m#     This tag allows you to manually generate refcard entries
64 #           for code lines that are hard/impossible to parse.
65 #               Example:
66 #                   #m# k ESC-h Call the run-help function
67 #               That would add a refcard entry in the keybindings table
68 #               for 'ESC-h' with the given comment.
69 #           So the syntax is: #m# <section> <argument> <comment>
70 #   #o#     This tag lets you insert entries to the 'other' hash.
71 #           Generally, this should not be used. It is there for
72 #           things that cannot be done easily in another way.
73 #           (placement tag: @@INSERT-other-foobar@@)
74 #
75 #   All of these tags (except for m and o) take two arguments, the first
76 #   within the tag, the other after the tag:
77 #
78 #   #<tag><section># <comment>
79 #
80 #   Where <section> is really just a number, which are defined by the
81 #   @secmap array on top of 'genrefcard.pl'. The reason for numbers
82 #   instead of names is, that for the reader, the tag should not differ
83 #   much from a regular comment. For zsh, it is a regular comment indeed.
84 #   The numbers have got the following meanings:
85 #         0 -> "default"
86 #         1 -> "system"
87 #         2 -> "user"
88 #         3 -> "debian"
89 #         4 -> "search"
90 #         5 -> "shortcuts"
91 #         6 -> "services"
92 #
93 #   So, the following will add an entry to the 'functions' table in the
94 #   'system' section, with a (hopefully) descriptive comment:
95 #       #f1# Edit an alias via zle
96 #       edalias() {
97 #
98 #   It will then show up in the @@INSERT-aliases-system@@ replacement tag
99 #   that can be found in 'grml-zsh-refcard.tex.in'.
100 #   If the section number is omitted, the 'default' section is assumed.
101 #   Furthermore, in 'grml-zsh-refcard.tex.in' @@INSERT-aliases@@ is
102 #   exactly the same as @@INSERT-aliases-default@@. If you want a list of
103 #   *all* aliases, for example, use @@INSERT-aliases-all@@.
104
105 # zsh profiling
106 # just execute 'ZSH_PROFILE_RC=1 zsh' and run 'zprof' to get the details
107 if [[ $ZSH_PROFILE_RC -gt 0 ]] ; then
108     zmodload zsh/zprof
109 fi
110
111 # load .zshrc.pre to give the user the chance to overwrite the defaults
112 [[ -r ${ZDOTDIR:-${HOME}}/.zshrc.pre ]] && source ${ZDOTDIR:-${HOME}}/.zshrc.pre
113
114 # check for version/system
115 # check for versions (compatibility reasons)
116 is4(){
117     [[ $ZSH_VERSION == <4->* ]] && return 0
118     return 1
119 }
120
121 is41(){
122     [[ $ZSH_VERSION == 4.<1->* || $ZSH_VERSION == <5->* ]] && return 0
123     return 1
124 }
125
126 is42(){
127     [[ $ZSH_VERSION == 4.<2->* || $ZSH_VERSION == <5->* ]] && return 0
128     return 1
129 }
130
131 is425(){
132     [[ $ZSH_VERSION == 4.2.<5->* || $ZSH_VERSION == 4.<3->* || $ZSH_VERSION == <5->* ]] && return 0
133     return 1
134 }
135
136 is43(){
137     [[ $ZSH_VERSION == 4.<3->* || $ZSH_VERSION == <5->* ]] && return 0
138     return 1
139 }
140
141 is433(){
142     [[ $ZSH_VERSION == 4.3.<3->* || $ZSH_VERSION == 4.<4->* \
143                                  || $ZSH_VERSION == <5->* ]] && return 0
144     return 1
145 }
146
147 is437(){
148     [[ $ZSH_VERSION == 4.3.<7->* || $ZSH_VERSION == 4.<4->* \
149                                  || $ZSH_VERSION == <5->* ]] && return 0
150     return 1
151 }
152
153 is439(){
154     [[ $ZSH_VERSION == 4.3.<9->* || $ZSH_VERSION == 4.<4->* \
155                                  || $ZSH_VERSION == <5->* ]] && return 0
156     return 1
157 }
158
159 #f1# Checks whether or not you're running grml
160 isgrml(){
161     [[ -f /etc/grml_version ]] && return 0
162     return 1
163 }
164
165 #f1# Checks whether or not you're running a grml cd
166 isgrmlcd(){
167     [[ -f /etc/grml_cd ]] && return 0
168     return 1
169 }
170
171 if isgrml ; then
172 #f1# Checks whether or not you're running grml-small
173     isgrmlsmall() {
174         if [[ ${${${(f)"$(</etc/grml_version)"}%% *}##*-} == 'small' ]]; then
175             return 0
176         fi
177         return 1
178     }
179 else
180     isgrmlsmall() { return 1 }
181 fi
182
183 GRML_OSTYPE=$(uname -s)
184
185 islinux(){
186     [[ $GRML_OSTYPE == "Linux" ]]
187 }
188
189 isdarwin(){
190     [[ $GRML_OSTYPE == "Darwin" ]]
191 }
192
193 isfreebsd(){
194     [[ $GRML_OSTYPE == "FreeBSD" ]]
195 }
196
197 isopenbsd(){
198     [[ $GRML_OSTYPE == "OpenBSD" ]]
199 }
200
201 issolaris(){
202     [[ $GRML_OSTYPE == "SunOS" ]]
203 }
204
205 #f1# are we running within an utf environment?
206 isutfenv() {
207     case "$LANG $CHARSET $LANGUAGE" in
208         *utf*) return 0 ;;
209         *UTF*) return 0 ;;
210         *)     return 1 ;;
211     esac
212 }
213
214 # check for user, if not running as root set $SUDO to sudo
215 (( EUID != 0 )) && SUDO='sudo' || SUDO=''
216
217 # change directory to home on first invocation of zsh
218 # important for rungetty -> autologin
219 # Thanks go to Bart Schaefer!
220 isgrml && checkhome() {
221     if [[ -z "$ALREADY_DID_CD_HOME" ]] ; then
222         export ALREADY_DID_CD_HOME=$HOME
223         cd
224     fi
225 }
226
227 # check for zsh v3.1.7+
228
229 if ! [[ ${ZSH_VERSION} == 3.1.<7->*      \
230      || ${ZSH_VERSION} == 3.<2->.<->*    \
231      || ${ZSH_VERSION} == <4->.<->*   ]] ; then
232
233     printf '-!-\n'
234     printf '-!- In this configuration we try to make use of features, that only\n'
235     printf '-!- require version 3.1.7 of the shell; That way this setup can be\n'
236     printf '-!- used with a wide range of zsh versions, while using fairly\n'
237     printf '-!- advanced features in all supported versions.\n'
238     printf '-!-\n'
239     printf '-!- However, you are running zsh version %s.\n' "$ZSH_VERSION"
240     printf '-!-\n'
241     printf '-!- While this *may* work, it might as well fail.\n'
242     printf '-!- Please consider updating to at least version 3.1.7 of zsh.\n'
243     printf '-!-\n'
244     printf '-!- DO NOT EXPECT THIS TO WORK FLAWLESSLY!\n'
245     printf '-!- If it does today, you'\''ve been lucky.\n'
246     printf '-!-\n'
247     printf '-!- Ye been warned!\n'
248     printf '-!-\n'
249
250     function zstyle() { : }
251 fi
252
253 # autoload wrapper - use this one instead of autoload directly
254 # We need to define this function as early as this, because autoloading
255 # 'is-at-least()' needs it.
256 function zrcautoload() {
257     emulate -L zsh
258     setopt extended_glob
259     local fdir ffile
260     local -i ffound
261
262     ffile=$1
263     (( ffound = 0 ))
264     for fdir in ${fpath} ; do
265         [[ -e ${fdir}/${ffile} ]] && (( ffound = 1 ))
266     done
267
268     (( ffound == 0 )) && return 1
269     if [[ $ZSH_VERSION == 3.1.<6-> || $ZSH_VERSION == <4->* ]] ; then
270         autoload -U ${ffile} || return 1
271     else
272         autoload ${ffile} || return 1
273     fi
274     return 0
275 }
276
277 # The following is the â€˜add-zsh-hook’ function from zsh upstream. It is
278 # included here to make the setup work with older versions of zsh (prior to
279 # 4.3.7) in which this function had a bug that triggers annoying errors during
280 # shell startup. This is exactly upstreams code from f0068edb4888a4d8fe94def,
281 # with just a few adjustments in coding style to make the function look more
282 # compact. This definition can be removed as soon as we raise the minimum
283 # version requirement to 4.3.7 or newer.
284 function add-zsh-hook() {
285     # Add to HOOK the given FUNCTION.
286     # HOOK is one of chpwd, precmd, preexec, periodic, zshaddhistory,
287     # zshexit, zsh_directory_name (the _functions subscript is not required).
288     #
289     # With -d, remove the function from the hook instead; delete the hook
290     # variable if it is empty.
291     #
292     # -D behaves like -d, but pattern characters are active in the function
293     # name, so any matching function will be deleted from the hook.
294     #
295     # Without -d, the FUNCTION is marked for autoload; -U is passed down to
296     # autoload if that is given, as are -z and -k. (This is harmless if the
297     # function is actually defined inline.)
298     emulate -L zsh
299     local -a hooktypes
300     hooktypes=(
301         chpwd precmd preexec periodic zshaddhistory zshexit
302         zsh_directory_name
303     )
304     local usage="Usage: $0 hook function\nValid hooks are:\n  $hooktypes"
305     local opt
306     local -a autoopts
307     integer del list help
308     while getopts "dDhLUzk" opt; do
309         case $opt in
310         (d) del=1 ;;
311         (D) del=2 ;;
312         (h) help=1 ;;
313         (L) list=1 ;;
314         ([Uzk]) autoopts+=(-$opt) ;;
315         (*) return 1 ;;
316         esac
317     done
318     shift $(( OPTIND - 1 ))
319     if (( list )); then
320         typeset -mp "(${1:-${(@j:|:)hooktypes}})_functions"
321         return $?
322     elif (( help || $# != 2 || ${hooktypes[(I)$1]} == 0 )); then
323         print -u$(( 2 - help )) $usage
324         return $(( 1 - help ))
325     fi
326     local hook="${1}_functions"
327     local fn="$2"
328     if (( del )); then
329         # delete, if hook is set
330         if (( ${(P)+hook} )); then
331             if (( del == 2 )); then
332                 set -A $hook ${(P)hook:#${~fn}}
333             else
334                 set -A $hook ${(P)hook:#$fn}
335             fi
336             # unset if no remaining entries --- this can give better
337             # performance in some cases
338             if (( ! ${(P)#hook} )); then
339                 unset $hook
340             fi
341         fi
342     else
343         if (( ${(P)+hook} )); then
344             if (( ${${(P)hook}[(I)$fn]} == 0 )); then
345                 set -A $hook ${(P)hook} $fn
346             fi
347         else
348             set -A $hook $fn
349         fi
350         autoload $autoopts -- $fn
351     fi
352 }
353
354 # Load is-at-least() for more precise version checks Note that this test will
355 # *always* fail, if the is-at-least function could not be marked for
356 # autoloading.
357 zrcautoload is-at-least || is-at-least() { return 1 }
358
359 # set some important options (as early as possible)
360
361 # append history list to the history file; this is the default but we make sure
362 # because it's required for share_history.
363 setopt append_history
364
365 # import new commands from the history file also in other zsh-session
366 is4 && setopt share_history
367
368 # save each command's beginning timestamp and the duration to the history file
369 setopt extended_history
370
371 # If a new command line being added to the history list duplicates an older
372 # one, the older command is removed from the list
373 is4 && setopt histignorealldups
374
375 # remove command lines from the history list when the first character on the
376 # line is a space
377 setopt histignorespace
378
379 # if a command is issued that can't be executed as a normal command, and the
380 # command is the name of a directory, perform the cd command to that directory.
381 setopt auto_cd
382
383 # in order to use #, ~ and ^ for filename generation grep word
384 # *~(*.gz|*.bz|*.bz2|*.zip|*.Z) -> searches for word not in compressed files
385 # don't forget to quote '^', '~' and '#'!
386 setopt extended_glob
387
388 # display PID when suspending processes as well
389 setopt longlistjobs
390
391 # try to avoid the 'zsh: no matches found...'
392 setopt nonomatch
393
394 # report the status of backgrounds jobs immediately
395 setopt notify
396
397 # whenever a command completion is attempted, make sure the entire command path
398 # is hashed first.
399 setopt hash_list_all
400
401 # not just at the end
402 setopt completeinword
403
404 # Don't send SIGHUP to background processes when the shell exits.
405 setopt nohup
406
407 # make cd push the old directory onto the directory stack.
408 setopt auto_pushd
409
410 # avoid "beep"ing
411 setopt nobeep
412
413 # don't push the same dir twice.
414 setopt pushd_ignore_dups
415
416 # * shouldn't match dotfiles. ever.
417 setopt noglobdots
418
419 # use zsh style word splitting
420 setopt noshwordsplit
421
422 # don't error out when unset parameters are used
423 setopt unset
424
425 # setting some default values
426 NOCOR=${NOCOR:-0}
427 NOMENU=${NOMENU:-0}
428 NOPRECMD=${NOPRECMD:-0}
429 COMMAND_NOT_FOUND=${COMMAND_NOT_FOUND:-0}
430 GRML_ZSH_CNF_HANDLER=${GRML_ZSH_CNF_HANDLER:-/usr/share/command-not-found/command-not-found}
431 GRML_DISPLAY_BATTERY=${GRML_DISPLAY_BATTERY:-${BATTERY:-0}}
432 GRMLSMALL_SPECIFIC=${GRMLSMALL_SPECIFIC:-1}
433 ZSH_NO_DEFAULT_LOCALE=${ZSH_NO_DEFAULT_LOCALE:-0}
434
435 typeset -ga ls_options
436 typeset -ga grep_options
437 if ls --color=auto / >/dev/null 2>&1; then
438     ls_options+=( --color=auto )
439 elif ls -G / >/dev/null 2>&1; then
440     ls_options+=( -G )
441 fi
442 if grep --color=auto -q "a" <<< "a" >/dev/null 2>&1; then
443     grep_options+=( --color=auto )
444 fi
445
446 # utility functions
447 # this function checks if a command exists and returns either true
448 # or false. This avoids using 'which' and 'whence', which will
449 # avoid problems with aliases for which on certain weird systems. :-)
450 # Usage: check_com [-c|-g] word
451 #   -c  only checks for external commands
452 #   -g  does the usual tests and also checks for global aliases
453 check_com() {
454     emulate -L zsh
455     local -i comonly gatoo
456
457     if [[ $1 == '-c' ]] ; then
458         (( comonly = 1 ))
459         shift
460     elif [[ $1 == '-g' ]] ; then
461         (( gatoo = 1 ))
462     else
463         (( comonly = 0 ))
464         (( gatoo = 0 ))
465     fi
466
467     if (( ${#argv} != 1 )) ; then
468         printf 'usage: check_com [-c] <command>\n' >&2
469         return 1
470     fi
471
472     if (( comonly > 0 )) ; then
473         [[ -n ${commands[$1]}  ]] && return 0
474         return 1
475     fi
476
477     if   [[ -n ${commands[$1]}    ]] \
478       || [[ -n ${functions[$1]}   ]] \
479       || [[ -n ${aliases[$1]}     ]] \
480       || [[ -n ${reswords[(r)$1]} ]] ; then
481
482         return 0
483     fi
484
485     if (( gatoo > 0 )) && [[ -n ${galiases[$1]} ]] ; then
486         return 0
487     fi
488
489     return 1
490 }
491
492 # creates an alias and precedes the command with
493 # sudo if $EUID is not zero.
494 salias() {
495     emulate -L zsh
496     local only=0 ; local multi=0
497     local key val
498     while getopts ":hao" opt; do
499         case $opt in
500             o) only=1 ;;
501             a) multi=1 ;;
502             h)
503                 printf 'usage: salias [-hoa] <alias-expression>\n'
504                 printf '  -h      shows this help text.\n'
505                 printf '  -a      replace '\'' ; '\'' sequences with '\'' ; sudo '\''.\n'
506                 printf '          be careful using this option.\n'
507                 printf '  -o      only sets an alias if a preceding sudo would be needed.\n'
508                 return 0
509                 ;;
510             *) salias -h >&2; return 1 ;;
511         esac
512     done
513     shift "$((OPTIND-1))"
514
515     if (( ${#argv} > 1 )) ; then
516         printf 'Too many arguments %s\n' "${#argv}"
517         return 1
518     fi
519
520     key="${1%%\=*}" ;  val="${1#*\=}"
521     if (( EUID == 0 )) && (( only == 0 )); then
522         alias -- "${key}=${val}"
523     elif (( EUID > 0 )) ; then
524         (( multi > 0 )) && val="${val// ; / ; sudo }"
525         alias -- "${key}=sudo ${val}"
526     fi
527
528     return 0
529 }
530
531 # a "print -l ${(u)foo}"-workaround for pre-4.2.0 shells
532 # usage: uprint foo
533 #   Where foo is the *name* of the parameter you want printed.
534 #   Note that foo is no typo; $foo would be wrong here!
535 if ! is42 ; then
536     uprint () {
537         emulate -L zsh
538         local -a u
539         local w
540         local parameter=$1
541
542         if [[ -z ${parameter} ]] ; then
543             printf 'usage: uprint <parameter>\n'
544             return 1
545         fi
546
547         for w in ${(P)parameter} ; do
548             [[ -z ${(M)u:#$w} ]] && u=( $u $w )
549         done
550
551         builtin print -l $u
552     }
553 fi
554
555 # Check if we can read given files and source those we can.
556 xsource() {
557     if (( ${#argv} < 1 )) ; then
558         printf 'usage: xsource FILE(s)...\n' >&2
559         return 1
560     fi
561
562     while (( ${#argv} > 0 )) ; do
563         [[ -r "$1" ]] && source "$1"
564         shift
565     done
566     return 0
567 }
568
569 # Check if we can read a given file and 'cat(1)' it.
570 xcat() {
571     emulate -L zsh
572     if (( ${#argv} != 1 )) ; then
573         printf 'usage: xcat FILE\n' >&2
574         return 1
575     fi
576
577     [[ -r $1 ]] && cat $1
578     return 0
579 }
580
581 # Remove these functions again, they are of use only in these
582 # setup files. This should be called at the end of .zshrc.
583 xunfunction() {
584     emulate -L zsh
585     local -a funcs
586     local func
587     funcs=(salias xcat xsource xunfunction zrcautoload zrcautozle)
588     for func in $funcs ; do
589         [[ -n ${functions[$func]} ]] \
590             && unfunction $func
591     done
592     return 0
593 }
594
595 # this allows us to stay in sync with grml's zshrc and put own
596 # modifications in ~/.zshrc.local
597 zrclocal() {
598     xsource "/etc/zsh/zshrc.local"
599     xsource "${ZDOTDIR:-${HOME}}/.zshrc.local"
600     return 0
601 }
602
603 # locale setup
604 if (( ZSH_NO_DEFAULT_LOCALE == 0 )); then
605     xsource "/etc/default/locale"
606 fi
607
608 for var in LANG LC_ALL LC_MESSAGES ; do
609     [[ -n ${(P)var} ]] && export $var
610 done
611 builtin unset -v var
612
613 # set some variables
614 if check_com -c vim ; then
615 #v#
616     export EDITOR=${EDITOR:-vim}
617 else
618     export EDITOR=${EDITOR:-vi}
619 fi
620
621 #v#
622 export PAGER=${PAGER:-less}
623
624 #v#
625 export MAIL=${MAIL:-/var/mail/$USER}
626
627 # color setup for ls:
628 check_com -c dircolors && eval $(dircolors -b)
629 # color setup for ls on OS X / FreeBSD:
630 isdarwin && export CLICOLOR=1
631 isfreebsd && export CLICOLOR=1
632
633 # do MacPorts setup on darwin
634 if isdarwin && [[ -d /opt/local ]]; then
635     # Note: PATH gets set in /etc/zprofile on Darwin, so this can't go into
636     # zshenv.
637     PATH="/opt/local/bin:/opt/local/sbin:$PATH"
638     MANPATH="/opt/local/share/man:$MANPATH"
639 fi
640 # do Fink setup on darwin
641 isdarwin && xsource /sw/bin/init.sh
642
643 # load our function and completion directories
644 for fdir in /usr/share/grml/zsh/completion /usr/share/grml/zsh/functions; do
645     fpath=( ${fdir} ${fdir}/**/*(/N) ${fpath} )
646     if [[ ${fdir} == '/usr/share/grml/zsh/functions' ]] ; then
647         for func in ${fdir}/**/[^_]*[^~](N.) ; do
648             zrcautoload ${func:t}
649         done
650     fi
651 done
652 unset fdir func
653
654 # support colors in less
655 export LESS_TERMCAP_mb=$'\E[01;31m'
656 export LESS_TERMCAP_md=$'\E[01;31m'
657 export LESS_TERMCAP_me=$'\E[0m'
658 export LESS_TERMCAP_se=$'\E[0m'
659 export LESS_TERMCAP_so=$'\E[01;44;33m'
660 export LESS_TERMCAP_ue=$'\E[0m'
661 export LESS_TERMCAP_us=$'\E[01;32m'
662
663 # mailchecks
664 MAILCHECK=30
665
666 # report about cpu-/system-/user-time of command if running longer than
667 # 5 seconds
668 REPORTTIME=5
669
670 # watch for everyone but me and root
671 watch=(notme root)
672
673 # automatically remove duplicates from these arrays
674 typeset -U path cdpath fpath manpath
675
676 # Load a few modules
677 is4 && \
678 for mod in parameter complist deltochar mathfunc ; do
679     zmodload -i zsh/${mod} 2>/dev/null || print "Notice: no ${mod} available :("
680 done && builtin unset -v mod
681
682 # autoload zsh modules when they are referenced
683 if is4 ; then
684     zmodload -a  zsh/stat    zstat
685     zmodload -a  zsh/zpty    zpty
686     zmodload -ap zsh/mapfile mapfile
687 fi
688
689 # completion system
690 COMPDUMPFILE=${COMPDUMPFILE:-${ZDOTDIR:-${HOME}}/.zcompdump}
691 if zrcautoload compinit ; then
692     compinit -d ${COMPDUMPFILE} || print 'Notice: no compinit available :('
693 else
694     print 'Notice: no compinit available :('
695     function compdef { }
696 fi
697
698 # completion system
699
700 # called later (via is4 && grmlcomp)
701 # note: use 'zstyle' for getting current settings
702 #         press ^xh (control-x h) for getting tags in context; ^x? (control-x ?) to run complete_debug with trace output
703 grmlcomp() {
704     # TODO: This could use some additional information
705
706     # Make sure the completion system is initialised
707     (( ${+_comps} )) || return 1
708
709     # allow one error for every three characters typed in approximate completer
710     zstyle ':completion:*:approximate:'    max-errors 'reply=( $((($#PREFIX+$#SUFFIX)/3 )) numeric )'
711
712     # don't complete backup files as executables
713     zstyle ':completion:*:complete:-command-::commands' ignored-patterns '(aptitude-*|*\~)'
714
715     # start menu completion only if it could find no unambiguous initial string
716     zstyle ':completion:*:correct:*'       insert-unambiguous true
717     zstyle ':completion:*:corrections'     format $'%{\e[0;31m%}%d (errors: %e)%{\e[0m%}'
718     zstyle ':completion:*:correct:*'       original true
719
720     # activate color-completion
721     zstyle ':completion:*:default'         list-colors ${(s.:.)LS_COLORS}
722
723     # format on completion
724     zstyle ':completion:*:descriptions'    format $'%{\e[0;31m%}completing %B%d%b%{\e[0m%}'
725
726     # automatically complete 'cd -<tab>' and 'cd -<ctrl-d>' with menu
727     # zstyle ':completion:*:*:cd:*:directory-stack' menu yes select
728
729     # insert all expansions for expand completer
730     zstyle ':completion:*:expand:*'        tag-order all-expansions
731     zstyle ':completion:*:history-words'   list false
732
733     # activate menu
734     zstyle ':completion:*:history-words'   menu yes
735
736     # ignore duplicate entries
737     zstyle ':completion:*:history-words'   remove-all-dups yes
738     zstyle ':completion:*:history-words'   stop yes
739
740     # match uppercase from lowercase
741     zstyle ':completion:*'                 matcher-list 'm:{a-z}={A-Z}'
742
743     # separate matches into groups
744     zstyle ':completion:*:matches'         group 'yes'
745     zstyle ':completion:*'                 group-name ''
746
747     if [[ "$NOMENU" -eq 0 ]] ; then
748         # if there are more than 5 options allow selecting from a menu
749         zstyle ':completion:*'               menu select=5
750     else
751         # don't use any menus at all
752         setopt no_auto_menu
753     fi
754
755     zstyle ':completion:*:messages'        format '%d'
756     zstyle ':completion:*:options'         auto-description '%d'
757
758     # describe options in full
759     zstyle ':completion:*:options'         description 'yes'
760
761     # on processes completion complete all user processes
762     zstyle ':completion:*:processes'       command 'ps -au$USER'
763
764     # offer indexes before parameters in subscripts
765     zstyle ':completion:*:*:-subscript-:*' tag-order indexes parameters
766
767     # provide verbose completion information
768     zstyle ':completion:*'                 verbose true
769
770     # recent (as of Dec 2007) zsh versions are able to provide descriptions
771     # for commands (read: 1st word in the line) that it will list for the user
772     # to choose from. The following disables that, because it's not exactly fast.
773     zstyle ':completion:*:-command-:*:'    verbose false
774
775     # set format for warnings
776     zstyle ':completion:*:warnings'        format $'%{\e[0;31m%}No matches for:%{\e[0m%} %d'
777
778     # define files to ignore for zcompile
779     zstyle ':completion:*:*:zcompile:*'    ignored-patterns '(*~|*.zwc)'
780     zstyle ':completion:correct:'          prompt 'correct to: %e'
781
782     # Ignore completion functions for commands you don't have:
783     zstyle ':completion::(^approximate*):*:functions' ignored-patterns '_*'
784
785     # Provide more processes in completion of programs like killall:
786     zstyle ':completion:*:processes-names' command 'ps c -u ${USER} -o command | uniq'
787
788     # complete manual by their section
789     zstyle ':completion:*:manuals'    separate-sections true
790     zstyle ':completion:*:manuals.*'  insert-sections   true
791     zstyle ':completion:*:man:*'      menu yes select
792
793     # Search path for sudo completion
794     zstyle ':completion:*:sudo:*' command-path /usr/local/sbin \
795                                                /usr/local/bin  \
796                                                /usr/sbin       \
797                                                /usr/bin        \
798                                                /sbin           \
799                                                /bin            \
800                                                /usr/X11R6/bin
801
802     # provide .. as a completion
803     zstyle ':completion:*' special-dirs ..
804
805     # run rehash on completion so new installed program are found automatically:
806     _force_rehash() {
807         (( CURRENT == 1 )) && rehash
808         return 1
809     }
810
811     ## correction
812     # some people don't like the automatic correction - so run 'NOCOR=1 zsh' to deactivate it
813     if [[ "$NOCOR" -gt 0 ]] ; then
814         zstyle ':completion:*' completer _oldlist _expand _force_rehash _complete _files _ignored
815         setopt nocorrect
816     else
817         # try to be smart about when to use what completer...
818         setopt correct
819         zstyle -e ':completion:*' completer '
820             if [[ $_last_try != "$HISTNO$BUFFER$CURSOR" ]] ; then
821                 _last_try="$HISTNO$BUFFER$CURSOR"
822                 reply=(_complete _match _ignored _prefix _files)
823             else
824                 if [[ $words[1] == (rm|mv) ]] ; then
825                     reply=(_complete _files)
826                 else
827                     reply=(_oldlist _expand _force_rehash _complete _ignored _correct _approximate _files)
828                 fi
829             fi'
830     fi
831
832     # command for process lists, the local web server details and host completion
833     zstyle ':completion:*:urls' local 'www' '/var/www/' 'public_html'
834
835     # caching
836     [[ -d $ZSHDIR/cache ]] && zstyle ':completion:*' use-cache yes && \
837                             zstyle ':completion::complete:*' cache-path $ZSHDIR/cache/
838
839     # host completion
840     if is42 ; then
841         [[ -r ~/.ssh/config ]] && _ssh_config_hosts=(${${(s: :)${(ps:\t:)${${(@M)${(f)"$(<$HOME/.ssh/config)"}:#Host *}#Host }}}:#*[*?]*}) || _ssh_config_hosts=()
842         [[ -r ~/.ssh/known_hosts ]] && _ssh_hosts=(${${${${(f)"$(<$HOME/.ssh/known_hosts)"}:#[\|]*}%%\ *}%%,*}) || _ssh_hosts=()
843         [[ -r /etc/hosts ]] && : ${(A)_etc_hosts:=${(s: :)${(ps:\t:)${${(f)~~"$(</etc/hosts)"}%%\#*}##[:blank:]#[^[:blank:]]#}}} || _etc_hosts=()
844     else
845         _ssh_config_hosts=()
846         _ssh_hosts=()
847         _etc_hosts=()
848     fi
849     hosts=(
850         $(hostname)
851         "$_ssh_config_hosts[@]"
852         "$_ssh_hosts[@]"
853         "$_etc_hosts[@]"
854         localhost
855     )
856     zstyle ':completion:*:hosts' hosts $hosts
857     # TODO: so, why is this here?
858     #  zstyle '*' hosts $hosts
859
860     # use generic completion system for programs not yet defined; (_gnu_generic works
861     # with commands that provide a --help option with "standard" gnu-like output.)
862     for compcom in cp deborphan df feh fetchipac gpasswd head hnb ipacsum mv \
863                    pal stow uname ; do
864         [[ -z ${_comps[$compcom]} ]] && compdef _gnu_generic ${compcom}
865     done; unset compcom
866
867     # see upgrade function in this file
868     compdef _hosts upgrade
869 }
870
871 # Keyboard setup: The following is based on the same code, we wrote for
872 # debian's setup. It ensures the terminal is in the right mode, when zle is
873 # active, so the values from $terminfo are valid. Therefore, this setup should
874 # work on all systems, that have support for `terminfo'. It also requires the
875 # zsh in use to have the `zsh/terminfo' module built.
876 #
877 # If you are customising your `zle-line-init()' or `zle-line-finish()'
878 # functions, make sure you call the following utility functions in there:
879 #
880 #     - zle-line-init():      zle-smkx
881 #     - zle-line-finish():    zle-rmkx
882
883 # Use emacs-like key bindings by default:
884 bindkey -e
885
886 # Custom widgets:
887
888 ## beginning-of-line OR beginning-of-buffer OR beginning of history
889 ## by: Bart Schaefer <schaefer@brasslantern.com>, Bernhard Tittelbach
890 beginning-or-end-of-somewhere() {
891     local hno=$HISTNO
892     if [[ ( "${LBUFFER[-1]}" == $'\n' && "${WIDGET}" == beginning-of* ) || \
893       ( "${RBUFFER[1]}" == $'\n' && "${WIDGET}" == end-of* ) ]]; then
894         zle .${WIDGET:s/somewhere/buffer-or-history/} "$@"
895     else
896         zle .${WIDGET:s/somewhere/line-hist/} "$@"
897         if (( HISTNO != hno )); then
898             zle .${WIDGET:s/somewhere/buffer-or-history/} "$@"
899         fi
900     fi
901 }
902 zle -N beginning-of-somewhere beginning-or-end-of-somewhere
903 zle -N end-of-somewhere beginning-or-end-of-somewhere
904
905 # add a command line to the shells history without executing it
906 commit-to-history() {
907     print -s ${(z)BUFFER}
908     zle send-break
909 }
910 zle -N commit-to-history
911
912 # only slash should be considered as a word separator:
913 slash-backward-kill-word() {
914     local WORDCHARS="${WORDCHARS:s@/@}"
915     # zle backward-word
916     zle backward-kill-word
917 }
918 zle -N slash-backward-kill-word
919
920 # a generic accept-line wrapper
921
922 # This widget can prevent unwanted autocorrections from command-name
923 # to _command-name, rehash automatically on enter and call any number
924 # of builtin and user-defined widgets in different contexts.
925 #
926 # For a broader description, see:
927 # <http://bewatermyfriend.org/posts/2007/12-26.11-50-38-tooltime.html>
928 #
929 # The code is imported from the file 'zsh/functions/accept-line' from
930 # <http://ft.bewatermyfriend.org/comp/zsh/zsh-dotfiles.tar.bz2>, which
931 # distributed under the same terms as zsh itself.
932
933 # A newly added command will may not be found or will cause false
934 # correction attempts, if you got auto-correction set. By setting the
935 # following style, we force accept-line() to rehash, if it cannot
936 # find the first word on the command line in the $command[] hash.
937 zstyle ':acceptline:*' rehash true
938
939 function Accept-Line() {
940     setopt localoptions noksharrays
941     local -a subs
942     local -xi aldone
943     local sub
944     local alcontext=${1:-$alcontext}
945
946     zstyle -a ":acceptline:${alcontext}" actions subs
947
948     (( ${#subs} < 1 )) && return 0
949
950     (( aldone = 0 ))
951     for sub in ${subs} ; do
952         [[ ${sub} == 'accept-line' ]] && sub='.accept-line'
953         zle ${sub}
954
955         (( aldone > 0 )) && break
956     done
957 }
958
959 function Accept-Line-getdefault() {
960     emulate -L zsh
961     local default_action
962
963     zstyle -s ":acceptline:${alcontext}" default_action default_action
964     case ${default_action} in
965         ((accept-line|))
966             printf ".accept-line"
967             ;;
968         (*)
969             printf ${default_action}
970             ;;
971     esac
972 }
973
974 function Accept-Line-HandleContext() {
975     zle Accept-Line
976
977     default_action=$(Accept-Line-getdefault)
978     zstyle -T ":acceptline:${alcontext}" call_default \
979         && zle ${default_action}
980 }
981
982 function accept-line() {
983     setopt localoptions noksharrays
984     local -ax cmdline
985     local -x alcontext
986     local buf com fname format msg default_action
987
988     alcontext='default'
989     buf="${BUFFER}"
990     cmdline=(${(z)BUFFER})
991     com="${cmdline[1]}"
992     fname="_${com}"
993
994     Accept-Line 'preprocess'
995
996     zstyle -t ":acceptline:${alcontext}" rehash \
997         && [[ -z ${commands[$com]} ]]           \
998         && rehash
999
1000     if    [[ -n ${com}               ]] \
1001        && [[ -n ${reswords[(r)$com]} ]] \
1002        || [[ -n ${aliases[$com]}     ]] \
1003        || [[ -n ${functions[$com]}   ]] \
1004        || [[ -n ${builtins[$com]}    ]] \
1005        || [[ -n ${commands[$com]}    ]] ; then
1006
1007         # there is something sensible to execute, just do it.
1008         alcontext='normal'
1009         Accept-Line-HandleContext
1010
1011         return
1012     fi
1013
1014     if    [[ -o correct              ]] \
1015        || [[ -o correctall           ]] \
1016        && [[ -n ${functions[$fname]} ]] ; then
1017
1018         # nothing there to execute but there is a function called
1019         # _command_name; a completion widget. Makes no sense to
1020         # call it on the commandline, but the correct{,all} options
1021         # will ask for it nevertheless, so warn the user.
1022         if [[ ${LASTWIDGET} == 'accept-line' ]] ; then
1023             # Okay, we warned the user before, he called us again,
1024             # so have it his way.
1025             alcontext='force'
1026             Accept-Line-HandleContext
1027
1028             return
1029         fi
1030
1031         if zstyle -t ":acceptline:${alcontext}" nocompwarn ; then
1032             alcontext='normal'
1033             Accept-Line-HandleContext
1034         else
1035             # prepare warning message for the user, configurable via zstyle.
1036             zstyle -s ":acceptline:${alcontext}" compwarnfmt msg
1037
1038             if [[ -z ${msg} ]] ; then
1039                 msg="%c will not execute and completion %f exists."
1040             fi
1041
1042             zformat -f msg "${msg}" "c:${com}" "f:${fname}"
1043
1044             zle -M -- "${msg}"
1045         fi
1046         return
1047     elif [[ -n ${buf//[$' \t\n']##/} ]] ; then
1048         # If we are here, the commandline contains something that is not
1049         # executable, which is neither subject to _command_name correction
1050         # and is not empty. might be a variable assignment
1051         alcontext='misc'
1052         Accept-Line-HandleContext
1053
1054         return
1055     fi
1056
1057     # If we got this far, the commandline only contains whitespace, or is empty.
1058     alcontext='empty'
1059     Accept-Line-HandleContext
1060 }
1061
1062 zle -N accept-line
1063 zle -N Accept-Line
1064 zle -N Accept-Line-HandleContext
1065
1066 # power completion / abbreviation expansion / buffer expansion
1067 # see http://zshwiki.org/home/examples/zleiab for details
1068 # less risky than the global aliases but powerful as well
1069 # just type the abbreviation key and afterwards 'ctrl-x .' to expand it
1070 declare -A abk
1071 setopt extendedglob
1072 setopt interactivecomments
1073 abk=(
1074 #   key   # value                  (#d additional doc string)
1075 #A# start
1076     '...'  '../..'
1077     '....' '../../..'
1078     'BG'   '& exit'
1079     'C'    '| wc -l'
1080     'G'    '|& grep '${grep_options:+"${grep_options[*]}"}
1081     'H'    '| head'
1082     'Hl'   ' --help |& less -r'    #d (Display help in pager)
1083     'L'    '| less'
1084     'LL'   '|& less -r'
1085     'M'    '| most'
1086     'N'    '&>/dev/null'           #d (No Output)
1087     'R'    '| tr A-z N-za-m'       #d (ROT13)
1088     'SL'   '| sort | less'
1089     'S'    '| sort -u'
1090     'T'    '| tail'
1091     'V'    '|& vim -'
1092 #A# end
1093     'co'   './configure && make && sudo make install'
1094 )
1095
1096 zleiab() {
1097     emulate -L zsh
1098     setopt extendedglob
1099     local MATCH
1100
1101     LBUFFER=${LBUFFER%%(#m)[.\-+:|_a-zA-Z0-9]#}
1102     LBUFFER+=${abk[$MATCH]:-$MATCH}
1103 }
1104
1105 zle -N zleiab
1106
1107 help-show-abk()
1108 {
1109   zle -M "$(print "Available abbreviations for expansion:"; print -a -C 2 ${(kv)abk})"
1110 }
1111
1112 zle -N help-show-abk
1113
1114 # press "ctrl-e d" to insert the actual date in the form yyyy-mm-dd
1115 insert-datestamp() { LBUFFER+=${(%):-'%D{%Y-%m-%d}'}; }
1116 zle -N insert-datestamp
1117
1118 # press esc-m for inserting last typed word again (thanks to caphuso!)
1119 insert-last-typed-word() { zle insert-last-word -- 0 -1 };
1120 zle -N insert-last-typed-word;
1121
1122 function grml-zsh-fg() {
1123   if (( ${#jobstates} )); then
1124     zle .push-input
1125     [[ -o hist_ignore_space ]] && BUFFER=' ' || BUFFER=''
1126     BUFFER="${BUFFER}fg"
1127     zle .accept-line
1128   else
1129     zle -M 'No background jobs. Doing nothing.'
1130   fi
1131 }
1132 zle -N grml-zsh-fg
1133
1134 # run command line as user root via sudo:
1135 sudo-command-line() {
1136     [[ -z $BUFFER ]] && zle up-history
1137     if [[ $BUFFER != sudo\ * ]]; then
1138         BUFFER="sudo $BUFFER"
1139         CURSOR=$(( CURSOR+5 ))
1140     fi
1141 }
1142 zle -N sudo-command-line
1143
1144 ### jump behind the first word on the cmdline.
1145 ### useful to add options.
1146 function jump_after_first_word() {
1147     local words
1148     words=(${(z)BUFFER})
1149
1150     if (( ${#words} <= 1 )) ; then
1151         CURSOR=${#BUFFER}
1152     else
1153         CURSOR=${#${words[1]}}
1154     fi
1155 }
1156 zle -N jump_after_first_word
1157
1158 #f5# Create directory under cursor or the selected area
1159 inplaceMkDirs() {
1160     # Press ctrl-xM to create the directory under the cursor or the selected area.
1161     # To select an area press ctrl-@ or ctrl-space and use the cursor.
1162     # Use case: you type "mv abc ~/testa/testb/testc/" and remember that the
1163     # directory does not exist yet -> press ctrl-XM and problem solved
1164     local PATHTOMKDIR
1165     if ((REGION_ACTIVE==1)); then
1166         local F=$MARK T=$CURSOR
1167         if [[ $F -gt $T ]]; then
1168             F=${CURSOR}
1169             T=${MARK}
1170         fi
1171         # get marked area from buffer and eliminate whitespace
1172         PATHTOMKDIR=${BUFFER[F+1,T]%%[[:space:]]##}
1173         PATHTOMKDIR=${PATHTOMKDIR##[[:space:]]##}
1174     else
1175         local bufwords iword
1176         bufwords=(${(z)LBUFFER})
1177         iword=${#bufwords}
1178         bufwords=(${(z)BUFFER})
1179         PATHTOMKDIR="${(Q)bufwords[iword]}"
1180     fi
1181     [[ -z "${PATHTOMKDIR}" ]] && return 1
1182     PATHTOMKDIR=${~PATHTOMKDIR}
1183     if [[ -e "${PATHTOMKDIR}" ]]; then
1184         zle -M " path already exists, doing nothing"
1185     else
1186         zle -M "$(mkdir -p -v "${PATHTOMKDIR}")"
1187         zle end-of-line
1188     fi
1189 }
1190
1191 zle -N inplaceMkDirs
1192
1193 #v1# set number of lines to display per page
1194 HELP_LINES_PER_PAGE=20
1195 #v1# set location of help-zle cache file
1196 HELP_ZLE_CACHE_FILE=~/.cache/zsh_help_zle_lines.zsh
1197 # helper function for help-zle, actually generates the help text
1198 help_zle_parse_keybindings()
1199 {
1200     emulate -L zsh
1201     setopt extendedglob
1202     unsetopt ksharrays  #indexing starts at 1
1203
1204     #v1# choose files that help-zle will parse for keybindings
1205     ((${+HELPZLE_KEYBINDING_FILES})) || HELPZLE_KEYBINDING_FILES=( /etc/zsh/zshrc ~/.zshrc.pre ~/.zshrc ~/.zshrc.local )
1206
1207     if [[ -r $HELP_ZLE_CACHE_FILE ]]; then
1208         local load_cache=0
1209         local f
1210         for f ($HELPZLE_KEYBINDING_FILES) [[ $f -nt $HELP_ZLE_CACHE_FILE ]] && load_cache=1
1211         [[ $load_cache -eq 0 ]] && . $HELP_ZLE_CACHE_FILE && return
1212     fi
1213
1214     #fill with default keybindings, possibly to be overwriten in a file later
1215     #Note that due to zsh inconsistency on escaping assoc array keys, we encase the key in '' which we will remove later
1216     local -A help_zle_keybindings
1217     help_zle_keybindings['<Ctrl>@']="set MARK"
1218     help_zle_keybindings['<Ctrl>x<Ctrl>j']="vi-join lines"
1219     help_zle_keybindings['<Ctrl>x<Ctrl>b']="jump to matching brace"
1220     help_zle_keybindings['<Ctrl>x<Ctrl>u']="undo"
1221     help_zle_keybindings['<Ctrl>_']="undo"
1222     help_zle_keybindings['<Ctrl>x<Ctrl>f<c>']="find <c> in cmdline"
1223     help_zle_keybindings['<Ctrl>a']="goto beginning of line"
1224     help_zle_keybindings['<Ctrl>e']="goto end of line"
1225     help_zle_keybindings['<Ctrl>t']="transpose charaters"
1226     help_zle_keybindings['<Alt>t']="transpose words"
1227     help_zle_keybindings['<Alt>s']="spellcheck word"
1228     help_zle_keybindings['<Ctrl>k']="backward kill buffer"
1229     help_zle_keybindings['<Ctrl>u']="forward kill buffer"
1230     help_zle_keybindings['<Ctrl>y']="insert previously killed word/string"
1231     help_zle_keybindings["<Alt>'"]="quote line"
1232     help_zle_keybindings['<Alt>"']="quote from mark to cursor"
1233     help_zle_keybindings['<Alt><arg>']="repeat next cmd/char <arg> times (<Alt>-<Alt>1<Alt>0a -> -10 times 'a')"
1234     help_zle_keybindings['<Alt>u']="make next word Uppercase"
1235     help_zle_keybindings['<Alt>l']="make next word lowercase"
1236     help_zle_keybindings['<Ctrl>xd']="preview expansion under cursor"
1237     help_zle_keybindings['<Alt>q']="push current CL into background, freeing it. Restore on next CL"
1238     help_zle_keybindings['<Alt>.']="insert (and interate through) last word from prev CLs"
1239     help_zle_keybindings['<Alt>,']="complete word from newer history (consecutive hits)"
1240     help_zle_keybindings['<Alt>m']="repeat last typed word on current CL"
1241     help_zle_keybindings['<Ctrl>v']="insert next keypress symbol literally (e.g. for bindkey)"
1242     help_zle_keybindings['!!:n*<Tab>']="insert last n arguments of last command"
1243     help_zle_keybindings['!!:n-<Tab>']="insert arguments n..N-2 of last command (e.g. mv s s d)"
1244     help_zle_keybindings['<Alt>h']="show help/manpage for current command"
1245
1246     #init global variables
1247     unset help_zle_lines help_zle_sln
1248     typeset -g -a help_zle_lines
1249     typeset -g help_zle_sln=1
1250
1251     local k v f cline
1252     local lastkeybind_desc contents     #last description starting with #k# that we found
1253     local num_lines_elapsed=0            #number of lines between last description and keybinding
1254     #search config files in the order they a called (and thus the order in which they overwrite keybindings)
1255     for f in $HELPZLE_KEYBINDING_FILES; do
1256         [[ -r "$f" ]] || continue   #not readable ? skip it
1257         contents="$(<$f)"
1258         for cline in "${(f)contents}"; do
1259             #zsh pattern: matches lines like: #k# ..............
1260             if [[ "$cline" == (#s)[[:space:]]#\#k\#[[:space:]]##(#b)(*)[[:space:]]#(#e) ]]; then
1261                 lastkeybind_desc="$match[*]"
1262                 num_lines_elapsed=0
1263             #zsh pattern: matches lines that set a keybinding using bind2map, bindkey or compdef -k
1264             #             ignores lines that are commentend out
1265             #             grabs first in '' or "" enclosed string with length between 1 and 6 characters
1266             elif [[ "$cline" == [^#]#(bind2maps[[:space:]](*)-s|bindkey|compdef -k)[[:space:]](*)(#b)(\"((?)(#c1,6))\"|\'((?)(#c1,6))\')(#B)(*)  ]]; then
1267                 #description prevously found ? description not more than 2 lines away ? keybinding not empty ?
1268                 if [[ -n $lastkeybind_desc && $num_lines_elapsed -lt 2 && -n $match[1] ]]; then
1269                     #substitute keybinding string with something readable
1270                     k=${${${${${${${match[1]/\\e\^h/<Alt><BS>}/\\e\^\?/<Alt><BS>}/\\e\[5~/<PageUp>}/\\e\[6~/<PageDown>}//(\\e|\^\[)/<Alt>}//\^/<Ctrl>}/3~/<Alt><Del>}
1271                     #put keybinding in assoc array, possibly overwriting defaults or stuff found in earlier files
1272                     #Note that we are extracting the keybinding-string including the quotes (see Note at beginning)
1273                     help_zle_keybindings[${k}]=$lastkeybind_desc
1274                 fi
1275                 lastkeybind_desc=""
1276             else
1277               ((num_lines_elapsed++))
1278             fi
1279         done
1280     done
1281     unset contents
1282     #calculate length of keybinding column
1283     local kstrlen=0
1284     for k (${(k)help_zle_keybindings[@]}) ((kstrlen < ${#k})) && kstrlen=${#k}
1285     #convert the assoc array into preformated lines, which we are able to sort
1286     for k v in ${(kv)help_zle_keybindings[@]}; do
1287         #pad keybinding-string to kstrlen chars and remove outermost characters (i.e. the quotes)
1288         help_zle_lines+=("${(r:kstrlen:)k[2,-2]}${v}")
1289     done
1290     #sort lines alphabetically
1291     help_zle_lines=("${(i)help_zle_lines[@]}")
1292     [[ -d ${HELP_ZLE_CACHE_FILE:h} ]] || mkdir -p "${HELP_ZLE_CACHE_FILE:h}"
1293     echo "help_zle_lines=(${(q)help_zle_lines[@]})" >| $HELP_ZLE_CACHE_FILE
1294     zcompile $HELP_ZLE_CACHE_FILE
1295 }
1296 typeset -g help_zle_sln
1297 typeset -g -a help_zle_lines
1298
1299 # Provides (partially autogenerated) help on keybindings and the zsh line editor
1300 help-zle()
1301 {
1302     emulate -L zsh
1303     unsetopt ksharrays  #indexing starts at 1
1304     #help lines already generated ? no ? then do it
1305     [[ ${+functions[help_zle_parse_keybindings]} -eq 1 ]] && {help_zle_parse_keybindings && unfunction help_zle_parse_keybindings}
1306     #already displayed all lines ? go back to the start
1307     [[ $help_zle_sln -gt ${#help_zle_lines} ]] && help_zle_sln=1
1308     local sln=$help_zle_sln
1309     #note that help_zle_sln is a global var, meaning we remember the last page we viewed
1310     help_zle_sln=$((help_zle_sln + HELP_LINES_PER_PAGE))
1311     zle -M "${(F)help_zle_lines[sln,help_zle_sln-1]}"
1312 }
1313 zle -N help-zle
1314
1315 ## complete word from currently visible Screen or Tmux buffer.
1316 if check_com -c screen || check_com -c tmux; then
1317     _complete_screen_display() {
1318         [[ "$TERM" != "screen" ]] && return 1
1319
1320         local TMPFILE=$(mktemp)
1321         local -U -a _screen_display_wordlist
1322         trap "rm -f $TMPFILE" EXIT
1323
1324         # fill array with contents from screen hardcopy
1325         if ((${+TMUX})); then
1326             #works, but crashes tmux below version 1.4
1327             #luckily tmux -V option to ask for version, was also added in 1.4
1328             tmux -V &>/dev/null || return
1329             tmux -q capture-pane \; save-buffer -b 0 $TMPFILE \; delete-buffer -b 0
1330         else
1331             screen -X hardcopy $TMPFILE
1332             # screen sucks, it dumps in latin1, apparently always. so recode it
1333             # to system charset
1334             check_com recode && recode latin1 $TMPFILE
1335         fi
1336         _screen_display_wordlist=( ${(QQ)$(<$TMPFILE)} )
1337         # remove PREFIX to be completed from that array
1338         _screen_display_wordlist[${_screen_display_wordlist[(i)$PREFIX]}]=""
1339         compadd -a _screen_display_wordlist
1340     }
1341     #m# k CTRL-x\,\,\,S Complete word from GNU screen buffer
1342     bindkey -r "^xS"
1343     compdef -k _complete_screen_display complete-word '^xS'
1344 fi
1345
1346 # Load a few more functions and tie them to widgets, so they can be bound:
1347
1348 function zrcautozle() {
1349     emulate -L zsh
1350     local fnc=$1
1351     zrcautoload $fnc && zle -N $fnc
1352 }
1353
1354 function zrcgotwidget() {
1355     (( ${+widgets[$1]} ))
1356 }
1357
1358 function zrcgotkeymap() {
1359     [[ -n ${(M)keymaps:#$1} ]]
1360 }
1361
1362 zrcautozle insert-files
1363 zrcautozle edit-command-line
1364 zrcautozle insert-unicode-char
1365 if zrcautoload history-search-end; then
1366     zle -N history-beginning-search-backward-end history-search-end
1367     zle -N history-beginning-search-forward-end  history-search-end
1368 fi
1369 zle -C hist-complete complete-word _generic
1370 zstyle ':completion:hist-complete:*' completer _history
1371
1372 # The actual terminal setup hooks and bindkey-calls:
1373
1374 # An array to note missing features to ease diagnosis in case of problems.
1375 typeset -ga grml_missing_features
1376
1377 function zrcbindkey() {
1378     if (( ARGC )) && zrcgotwidget ${argv[-1]}; then
1379         bindkey "$@"
1380     fi
1381 }
1382
1383 function bind2maps () {
1384     local i sequence widget
1385     local -a maps
1386
1387     while [[ "$1" != "--" ]]; do
1388         maps+=( "$1" )
1389         shift
1390     done
1391     shift
1392
1393     if [[ "$1" == "-s" ]]; then
1394         shift
1395         sequence="$1"
1396     else
1397         sequence="${key[$1]}"
1398     fi
1399     widget="$2"
1400
1401     [[ -z "$sequence" ]] && return 1
1402
1403     for i in "${maps[@]}"; do
1404         zrcbindkey -M "$i" "$sequence" "$widget"
1405     done
1406 }
1407
1408 if (( ${+terminfo[smkx]} )) && (( ${+terminfo[rmkx]} )); then
1409     function zle-smkx () {
1410         emulate -L zsh
1411         printf '%s' ${terminfo[smkx]}
1412     }
1413     function zle-rmkx () {
1414         emulate -L zsh
1415         printf '%s' ${terminfo[rmkx]}
1416     }
1417     function zle-line-init () {
1418         zle-smkx
1419     }
1420     function zle-line-finish () {
1421         zle-rmkx
1422     }
1423     zle -N zle-line-init
1424     zle -N zle-line-finish
1425 else
1426     for i in {s,r}mkx; do
1427         (( ${+terminfo[$i]} )) || grml_missing_features+=($i)
1428     done
1429     unset i
1430 fi
1431
1432 typeset -A key
1433 key=(
1434     Home     "${terminfo[khome]}"
1435     End      "${terminfo[kend]}"
1436     Insert   "${terminfo[kich1]}"
1437     Delete   "${terminfo[kdch1]}"
1438     Up       "${terminfo[kcuu1]}"
1439     Down     "${terminfo[kcud1]}"
1440     Left     "${terminfo[kcub1]}"
1441     Right    "${terminfo[kcuf1]}"
1442     PageUp   "${terminfo[kpp]}"
1443     PageDown "${terminfo[knp]}"
1444     BackTab  "${terminfo[kcbt]}"
1445 )
1446
1447 # Guidelines for adding key bindings:
1448 #
1449 #   - Do not add hardcoded escape sequences, to enable non standard key
1450 #     combinations such as Ctrl-Meta-Left-Cursor. They are not easily portable.
1451 #
1452 #   - Adding Ctrl characters, such as '^b' is okay; note that '^b' and '^B' are
1453 #     the same key.
1454 #
1455 #   - All keys from the $key[] mapping are obviously okay.
1456 #
1457 #   - Most terminals send "ESC x" when Meta-x is pressed. Thus, sequences like
1458 #     '\ex' are allowed in here as well.
1459
1460 bind2maps emacs             -- Home   beginning-of-somewhere
1461 bind2maps       viins vicmd -- Home   vi-beginning-of-line
1462 bind2maps emacs             -- End    end-of-somewhere
1463 bind2maps       viins vicmd -- End    vi-end-of-line
1464 bind2maps emacs viins       -- Insert overwrite-mode
1465 bind2maps             vicmd -- Insert vi-insert
1466 bind2maps emacs             -- Delete delete-char
1467 bind2maps       viins vicmd -- Delete vi-delete-char
1468 bind2maps emacs viins vicmd -- Up     up-line-or-search
1469 bind2maps emacs viins vicmd -- Down   down-line-or-search
1470 bind2maps emacs             -- Left   backward-char
1471 bind2maps       viins vicmd -- Left   vi-backward-char
1472 bind2maps emacs             -- Right  forward-char
1473 bind2maps       viins vicmd -- Right  vi-forward-char
1474 #k# Perform abbreviation expansion
1475 bind2maps emacs viins       -- -s '^x.' zleiab
1476 #k# Display list of abbreviations that would expand
1477 bind2maps emacs viins       -- -s '^xb' help-show-abk
1478 #k# mkdir -p <dir> from string under cursor or marked area
1479 bind2maps emacs viins       -- -s '^xM' inplaceMkDirs
1480 #k# display help for keybindings and ZLE
1481 bind2maps emacs viins       -- -s '^xz' help-zle
1482 #k# Insert files and test globbing
1483 bind2maps emacs viins       -- -s "^xf" insert-files
1484 #k# Edit the current line in \kbd{\$EDITOR}
1485 bind2maps emacs viins       -- -s '\ee' edit-command-line
1486 #k# search history backward for entry beginning with typed text
1487 bind2maps emacs viins       -- -s '^xp' history-beginning-search-backward-end
1488 #k# search history forward for entry beginning with typed text
1489 bind2maps emacs viins       -- -s '^xP' history-beginning-search-forward-end
1490 #k# search history backward for entry beginning with typed text
1491 bind2maps emacs viins       -- PageUp history-beginning-search-backward-end
1492 #k# search history forward for entry beginning with typed text
1493 bind2maps emacs viins       -- PageDown history-beginning-search-forward-end
1494 bind2maps emacs viins       -- -s "^x^h" commit-to-history
1495 #k# Kill left-side word or everything up to next slash
1496 bind2maps emacs viins       -- -s '\ev' slash-backward-kill-word
1497 #k# Kill left-side word or everything up to next slash
1498 bind2maps emacs viins       -- -s '\e^h' slash-backward-kill-word
1499 #k# Kill left-side word or everything up to next slash
1500 bind2maps emacs viins       -- -s '\e^?' slash-backward-kill-word
1501 # Do history expansion on space:
1502 bind2maps emacs viins       -- -s ' ' magic-space
1503 #k# Trigger menu-complete
1504 bind2maps emacs viins       -- -s '\ei' menu-complete  # menu completion via esc-i
1505 #k# Insert a timestamp on the command line (yyyy-mm-dd)
1506 bind2maps emacs viins       -- -s '^ed' insert-datestamp
1507 #k# Insert last typed word
1508 bind2maps emacs viins       -- -s "\em" insert-last-typed-word
1509 #k# A smart shortcut for \kbd{fg<enter>}
1510 bind2maps emacs viins       -- -s '^z' grml-zsh-fg
1511 #k# prepend the current command with "sudo"
1512 bind2maps emacs viins       -- -s "^os" sudo-command-line
1513 #k# jump to after first word (for adding options)
1514 bind2maps emacs viins       -- -s '^x1' jump_after_first_word
1515 #k# complete word from history with menu
1516 bind2maps emacs viins       -- -s "^x^x" hist-complete
1517
1518 # insert unicode character
1519 # usage example: 'ctrl-x i' 00A7 'ctrl-x i' will give you an Â§
1520 # See for example http://unicode.org/charts/ for unicode characters code
1521 #k# Insert Unicode character
1522 bind2maps emacs viins       -- -s '^xi' insert-unicode-char
1523
1524 # use the new *-pattern-* widgets for incremental history search
1525 if zrcgotwidget history-incremental-pattern-search-backward; then
1526     for seq wid in '^r' history-incremental-pattern-search-backward \
1527                    '^s' history-incremental-pattern-search-forward
1528     do
1529         bind2maps emacs viins vicmd -- -s $seq $wid
1530     done
1531     builtin unset -v seq wid
1532 fi
1533
1534 if zrcgotkeymap menuselect; then
1535     #m# k Shift-tab Perform backwards menu completion
1536     bind2maps menuselect -- BackTab reverse-menu-complete
1537
1538     #k# menu selection: pick item but stay in the menu
1539     bind2maps menuselect -- -s '\e^M' accept-and-menu-complete
1540     # also use + and INSERT since it's easier to press repeatedly
1541     bind2maps menuselect -- -s '+' accept-and-menu-complete
1542     bind2maps menuselect -- Insert accept-and-menu-complete
1543
1544     # accept a completion and try to complete again by using menu
1545     # completion; very useful with completing directories
1546     # by using 'undo' one's got a simple file browser
1547     bind2maps menuselect -- -s '^o' accept-and-infer-next-history
1548 fi
1549
1550 # Finally, here are still a few hardcoded escape sequences; Special sequences
1551 # like Ctrl-<Cursor-key> etc do suck a fair bit, because they are not
1552 # standardised and most of the time are not available in a terminals terminfo
1553 # entry.
1554 #
1555 # While we do not encourage adding bindings like these, we will keep these for
1556 # backward compatibility.
1557
1558 ## use Ctrl-left-arrow and Ctrl-right-arrow for jumping to word-beginnings on
1559 ## the command line.
1560 # URxvt sequences:
1561 bind2maps emacs viins vicmd -- -s '\eOc' forward-word
1562 bind2maps emacs viins vicmd -- -s '\eOd' backward-word
1563 # These are for xterm:
1564 bind2maps emacs viins vicmd -- -s '\e[1;5C' forward-word
1565 bind2maps emacs viins vicmd -- -s '\e[1;5D' backward-word
1566 ## the same for alt-left-arrow and alt-right-arrow
1567 # URxvt again:
1568 bind2maps emacs viins vicmd -- -s '\e\e[C' forward-word
1569 bind2maps emacs viins vicmd -- -s '\e\e[D' backward-word
1570 # Xterm again:
1571 bind2maps emacs viins vicmd -- -s '^[[1;3C' forward-word
1572 bind2maps emacs viins vicmd -- -s '^[[1;3D' backward-word
1573 # Also try ESC Left/Right:
1574 bind2maps emacs viins vicmd -- -s '\e'${key[Right]} forward-word
1575 bind2maps emacs viins vicmd -- -s '\e'${key[Left]}  backward-word
1576
1577 # autoloading
1578
1579 zrcautoload zmv
1580 zrcautoload zed
1581
1582 # we don't want to quote/espace URLs on our own...
1583 # if autoload -U url-quote-magic ; then
1584 #    zle -N self-insert url-quote-magic
1585 #    zstyle ':url-quote-magic:*' url-metas '*?[]^()~#{}='
1586 # else
1587 #    print 'Notice: no url-quote-magic available :('
1588 # fi
1589 alias url-quote='autoload -U url-quote-magic ; zle -N self-insert url-quote-magic'
1590
1591 #m# k ESC-h Call \kbd{run-help} for the 1st word on the command line
1592 alias run-help >&/dev/null && unalias run-help
1593 for rh in run-help{,-git,-svk,-svn}; do
1594     zrcautoload $rh
1595 done; unset rh
1596
1597 # command not found handling
1598
1599 (( ${COMMAND_NOT_FOUND} == 1 )) &&
1600 function command_not_found_handler() {
1601     emulate -L zsh
1602     if [[ -x ${GRML_ZSH_CNF_HANDLER} ]] ; then
1603         ${GRML_ZSH_CNF_HANDLER} $1
1604     fi
1605     return 1
1606 }
1607
1608 # history
1609
1610 ZSHDIR=${ZDOTDIR:-${HOME}/.zsh}
1611
1612 #v#
1613 HISTFILE=${ZDOTDIR:-${HOME}}/.zsh_history
1614 isgrmlcd && HISTSIZE=500  || HISTSIZE=5000
1615 isgrmlcd && SAVEHIST=1000 || SAVEHIST=10000 # useful for setopt append_history
1616
1617 # dirstack handling
1618
1619 DIRSTACKSIZE=${DIRSTACKSIZE:-20}
1620 DIRSTACKFILE=${DIRSTACKFILE:-${ZDOTDIR:-${HOME}}/.zdirs}
1621
1622 if [[ -f ${DIRSTACKFILE} ]] && [[ ${#dirstack[*]} -eq 0 ]] ; then
1623     # Enabling NULL_GLOB via (N) weeds out any non-existing
1624     # directories from the saved dir-stack file.
1625     dirstack=( ${(f)"$(< $DIRSTACKFILE)"}(N) )
1626     # "cd -" won't work after login by just setting $OLDPWD, so
1627     [[ -d $dirstack[1] ]] && cd $dirstack[1] && cd $OLDPWD
1628 fi
1629
1630 chpwd() {
1631     if (( $DIRSTACKSIZE <= 0 )) || [[ -z $DIRSTACKFILE ]]; then return; fi
1632     local -ax my_stack
1633     my_stack=( ${PWD} ${dirstack} )
1634     if is42 ; then
1635         builtin print -l ${(u)my_stack} >! ${DIRSTACKFILE}
1636     else
1637         uprint my_stack >! ${DIRSTACKFILE}
1638     fi
1639 }
1640
1641 # directory based profiles
1642
1643 if is433 ; then
1644
1645 # chpwd_profiles(): Directory Profiles, Quickstart:
1646 #
1647 # In .zshrc.local:
1648 #
1649 #   zstyle ':chpwd:profiles:/usr/src/grml(|/|/*)'   profile grml
1650 #   zstyle ':chpwd:profiles:/usr/src/debian(|/|/*)' profile debian
1651 #   chpwd_profiles
1652 #
1653 # For details see the `grmlzshrc.5' manual page.
1654 function chpwd_profiles() {
1655     local profile context
1656     local -i reexecute
1657
1658     context=":chpwd:profiles:$PWD"
1659     zstyle -s "$context" profile profile || profile='default'
1660     zstyle -T "$context" re-execute && reexecute=1 || reexecute=0
1661
1662     if (( ${+parameters[CHPWD_PROFILE]} == 0 )); then
1663         typeset -g CHPWD_PROFILE
1664         local CHPWD_PROFILES_INIT=1
1665         (( ${+functions[chpwd_profiles_init]} )) && chpwd_profiles_init
1666     elif [[ $profile != $CHPWD_PROFILE ]]; then
1667         (( ${+functions[chpwd_leave_profile_$CHPWD_PROFILE]} )) \
1668             && chpwd_leave_profile_${CHPWD_PROFILE}
1669     fi
1670     if (( reexecute )) || [[ $profile != $CHPWD_PROFILE ]]; then
1671         (( ${+functions[chpwd_profile_$profile]} )) && chpwd_profile_${profile}
1672     fi
1673
1674     CHPWD_PROFILE="${profile}"
1675     return 0
1676 }
1677
1678 chpwd_functions=( ${chpwd_functions} chpwd_profiles )
1679
1680 fi # is433
1681
1682 # Prompt setup for grml:
1683
1684 # set colors for use in prompts (modern zshs allow for the use of %F{red}foo%f
1685 # in prompts to get a red "foo" embedded, but it's good to keep these for
1686 # backwards compatibility).
1687 if is437; then
1688     BLUE="%F{blue}"
1689     RED="%F{red}"
1690     GREEN="%F{green}"
1691     CYAN="%F{cyan}"
1692     MAGENTA="%F{magenta}"
1693     YELLOW="%F{yellow}"
1694     WHITE="%F{white}"
1695     NO_COLOR="%f"
1696 elif zrcautoload colors && colors 2>/dev/null ; then
1697     BLUE="%{${fg[blue]}%}"
1698     RED="%{${fg_bold[red]}%}"
1699     GREEN="%{${fg[green]}%}"
1700     CYAN="%{${fg[cyan]}%}"
1701     MAGENTA="%{${fg[magenta]}%}"
1702     YELLOW="%{${fg[yellow]}%}"
1703     WHITE="%{${fg[white]}%}"
1704     NO_COLOR="%{${reset_color}%}"
1705 else
1706     BLUE=$'%{\e[1;34m%}'
1707     RED=$'%{\e[1;31m%}'
1708     GREEN=$'%{\e[1;32m%}'
1709     CYAN=$'%{\e[1;36m%}'
1710     WHITE=$'%{\e[1;37m%}'
1711     MAGENTA=$'%{\e[1;35m%}'
1712     YELLOW=$'%{\e[1;33m%}'
1713     NO_COLOR=$'%{\e[0m%}'
1714 fi
1715
1716 # First, the easy ones: PS2..4:
1717
1718 # secondary prompt, printed when the shell needs more information to complete a
1719 # command.
1720 PS2='\`%_> '
1721 # selection prompt used within a select loop.
1722 PS3='?# '
1723 # the execution trace prompt (setopt xtrace). default: '+%N:%i>'
1724 PS4='+%N:%i:%_> '
1725
1726 # Some additional features to use with our prompt:
1727 #
1728 #    - battery status
1729 #    - debian_chroot
1730 #    - vcs_info setup and version specific fixes
1731
1732 # display battery status on right side of prompt using 'GRML_DISPLAY_BATTERY=1' in .zshrc.pre
1733
1734 battery() {
1735 if [[ $GRML_DISPLAY_BATTERY -gt 0 ]] ; then
1736     if islinux ; then
1737         batterylinux
1738     elif isopenbsd ; then
1739         batteryopenbsd
1740     elif isfreebsd ; then
1741         batteryfreebsd
1742     elif isdarwin ; then
1743         batterydarwin
1744     else
1745         #not yet supported
1746         GRML_DISPLAY_BATTERY=0
1747     fi
1748 fi
1749 }
1750
1751 batterylinux(){
1752 GRML_BATTERY_LEVEL=''
1753 local batteries bat capacity
1754 batteries=( /sys/class/power_supply/BAT*(N) )
1755 if (( $#batteries > 0 )) ; then
1756     for bat in $batteries ; do
1757         capacity=$(< $bat/capacity)
1758         case $(< $bat/status) in
1759         Charging)
1760             GRML_BATTERY_LEVEL+=" ^"
1761             ;;
1762         Discharging)
1763             if (( capacity < 20 )) ; then
1764                 GRML_BATTERY_LEVEL+=" !v"
1765             else
1766                 GRML_BATTERY_LEVEL+=" v"
1767             fi
1768             ;;
1769         *) # Full, Unknown
1770             GRML_BATTERY_LEVEL+=" ="
1771             ;;
1772         esac
1773         GRML_BATTERY_LEVEL+="${capacity}%%"
1774     done
1775 fi
1776 }
1777
1778 batteryopenbsd(){
1779 GRML_BATTERY_LEVEL=''
1780 local bat batfull batwarn batnow num
1781 for num in 0 1 ; do
1782     bat=$(sysctl -n hw.sensors.acpibat${num} 2>/dev/null)
1783     if [[ -n $bat ]]; then
1784         batfull=${"$(sysctl -n hw.sensors.acpibat${num}.amphour0)"%% *}
1785         batwarn=${"$(sysctl -n hw.sensors.acpibat${num}.amphour1)"%% *}
1786         batnow=${"$(sysctl -n hw.sensors.acpibat${num}.amphour3)"%% *}
1787         case "$(sysctl -n hw.sensors.acpibat${num}.raw0)" in
1788             *" discharging"*)
1789                 if (( batnow < batwarn )) ; then
1790                     GRML_BATTERY_LEVEL+=" !v"
1791                 else
1792                     GRML_BATTERY_LEVEL+=" v"
1793                 fi
1794                 ;;
1795             *" charging"*)
1796                 GRML_BATTERY_LEVEL+=" ^"
1797                 ;;
1798             *)
1799                 GRML_BATTERY_LEVEL+=" ="
1800                 ;;
1801         esac
1802         GRML_BATTERY_LEVEL+="${$(( 100 * batnow / batfull ))%%.*}%%"
1803     fi
1804 done
1805 }
1806
1807 batteryfreebsd(){
1808 GRML_BATTERY_LEVEL=''
1809 local num
1810 local -A table
1811 for num in 0 1 ; do
1812     table=( ${=${${${${${(M)${(f)"$(acpiconf -i $num 2>&1)"}:#(State|Remaining capacity):*}%%( ##|%)}//:[ $'\t']##/@}// /-}//@/ }} )
1813     if [[ -n $table ]] && [[ $table[State] != "not-present" ]] ; then
1814         case $table[State] in
1815             *discharging*)
1816                 if (( $table[Remaining-capacity] < 20 )) ; then
1817                     GRML_BATTERY_LEVEL+=" !v"
1818                 else
1819                     GRML_BATTERY_LEVEL+=" v"
1820                 fi
1821                 ;;
1822             *charging*)
1823                 GRML_BATTERY_LEVEL+=" ^"
1824                 ;;
1825             *)
1826                 GRML_BATTERY_LEVEL+=" ="
1827                 ;;
1828         esac
1829         GRML_BATTERY_LEVEL+="$table[Remaining-capacity]%%"
1830     fi
1831 done
1832 }
1833
1834 batterydarwin(){
1835 GRML_BATTERY_LEVEL=''
1836 local -a table
1837 table=( ${$(pmset -g ps)[(w)7,8]%%(\%|);} )
1838 if [[ -n $table[2] ]] ; then
1839     case $table[2] in
1840         charging)
1841             GRML_BATTERY_LEVEL+=" ^"
1842             ;;
1843         discharging)
1844             if (( $table[1] < 20 )) ; then
1845                 GRML_BATTERY_LEVEL+=" !v"
1846             else
1847                 GRML_BATTERY_LEVEL+=" v"
1848             fi
1849             ;;
1850         *)
1851             GRML_BATTERY_LEVEL+=" ="
1852             ;;
1853     esac
1854     GRML_BATTERY_LEVEL+="$table[1]%%"
1855 fi
1856 }
1857
1858 # set variable debian_chroot if running in a chroot with /etc/debian_chroot
1859 if [[ -z "$debian_chroot" ]] && [[ -r /etc/debian_chroot ]] ; then
1860     debian_chroot=$(</etc/debian_chroot)
1861 fi
1862
1863 # gather version control information for inclusion in a prompt
1864
1865 if zrcautoload vcs_info; then
1866     # `vcs_info' in zsh versions 4.3.10 and below have a broken `_realpath'
1867     # function, which can cause a lot of trouble with our directory-based
1868     # profiles. So:
1869     if [[ ${ZSH_VERSION} == 4.3.<-10> ]] ; then
1870         function VCS_INFO_realpath () {
1871             setopt localoptions NO_shwordsplit chaselinks
1872             ( builtin cd -q $1 2> /dev/null && pwd; )
1873         }
1874     fi
1875
1876     zstyle ':vcs_info:*' max-exports 2
1877
1878     if [[ -o restricted ]]; then
1879         zstyle ':vcs_info:*' enable NONE
1880     fi
1881 fi
1882
1883 typeset -A grml_vcs_coloured_formats
1884 typeset -A grml_vcs_plain_formats
1885
1886 grml_vcs_plain_formats=(
1887     format "(%s%)-[%b] "    "zsh: %r"
1888     actionformat "(%s%)-[%b|%a] " "zsh: %r"
1889     rev-branchformat "%b:%r"
1890 )
1891
1892 grml_vcs_coloured_formats=(
1893     format "${MAGENTA}(${NO_COLOR}%s${MAGENTA})${YELLOW}-${MAGENTA}[${GREEN}%b${MAGENTA}]${NO_COLOR} "
1894     actionformat "${MAGENTA}(${NO_COLOR}%s${MAGENTA})${YELLOW}-${MAGENTA}[${GREEN}%b${YELLOW}|${RED}%a${MAGENTA}]${NO_COLOR} "
1895     rev-branchformat "%b${RED}:${YELLOW}%r"
1896 )
1897
1898 typeset GRML_VCS_COLOUR_MODE=xxx
1899
1900 grml_vcs_info_toggle_colour () {
1901     emulate -L zsh
1902     if [[ $GRML_VCS_COLOUR_MODE == plain ]]; then
1903         grml_vcs_info_set_formats coloured
1904     else
1905         grml_vcs_info_set_formats plain
1906     fi
1907     return 0
1908 }
1909
1910 grml_vcs_info_set_formats () {
1911     emulate -L zsh
1912     #setopt localoptions xtrace
1913     local mode=$1 AF F BF
1914     if [[ $mode == coloured ]]; then
1915         AF=${grml_vcs_coloured_formats[actionformat]}
1916         F=${grml_vcs_coloured_formats[format]}
1917         BF=${grml_vcs_coloured_formats[rev-branchformat]}
1918         GRML_VCS_COLOUR_MODE=coloured
1919     else
1920         AF=${grml_vcs_plain_formats[actionformat]}
1921         F=${grml_vcs_plain_formats[format]}
1922         BF=${grml_vcs_plain_formats[rev-branchformat]}
1923         GRML_VCS_COLOUR_MODE=plain
1924     fi
1925
1926     zstyle ':vcs_info:*'              actionformats "$AF" "zsh: %r"
1927     zstyle ':vcs_info:*'              formats       "$F"  "zsh: %r"
1928     zstyle ':vcs_info:(sv[nk]|bzr):*' branchformat  "$BF"
1929     return 0
1930 }
1931
1932 # Change vcs_info formats for the grml prompt. The 2nd format sets up
1933 # $vcs_info_msg_1_ to contain "zsh: repo-name" used to set our screen title.
1934 if [[ "$TERM" == dumb ]] ; then
1935     grml_vcs_info_set_formats plain
1936 else
1937     grml_vcs_info_set_formats coloured
1938 fi
1939
1940 # Now for the fun part: The grml prompt themes in `promptsys' mode of operation
1941
1942 # This actually defines three prompts:
1943 #
1944 #    - grml
1945 #    - grml-large
1946 #    - grml-chroot
1947 #
1948 # They all share the same code and only differ with respect to which items they
1949 # contain. The main source of documentation is the `prompt_grml_help' function
1950 # below, which gets called when the user does this: prompt -h grml
1951
1952 function prompt_grml_help () {
1953     <<__EOF0__
1954   prompt grml
1955
1956     This is the prompt as used by the grml-live system <http://grml.org>. It is
1957     a rather simple one-line prompt, that by default looks something like this:
1958
1959         <user>@<host> <current-working-directory>[ <vcs_info-data>]%
1960
1961     The prompt itself integrates with zsh's prompt themes system (as you are
1962     witnessing right now) and is configurable to a certain degree. In
1963     particular, these aspects are customisable:
1964
1965         - The items used in the prompt (e.g. you can remove \`user' from
1966           the list of activated items, which will cause the user name to
1967           be omitted from the prompt string).
1968
1969         - The attributes used with the items are customisable via strings
1970           used before and after the actual item.
1971
1972     The available items are: at, battery, change-root, date, grml-chroot,
1973     history, host, jobs, newline, path, percent, rc, rc-always, sad-smiley,
1974     shell-level, time, user, vcs
1975
1976     The actual configuration is done via zsh's \`zstyle' mechanism. The
1977     context, that is used while looking up styles is:
1978
1979         ':prompt:grml:<left-or-right>:<subcontext>'
1980
1981     Here <left-or-right> is either \`left' or \`right', signifying whether the
1982     style should affect the left or the right prompt. <subcontext> is either
1983     \`setup' or 'items:<item>', where \`<item>' is one of the available items.
1984
1985     The styles:
1986
1987         - use-rprompt (boolean): If \`true' (the default), print a sad smiley
1988           in $RPROMPT if the last command a returned non-successful error code.
1989           (This in only valid if <left-or-right> is "right"; ignored otherwise)
1990
1991         - items (list): The list of items used in the prompt. If \`vcs' is
1992           present in the list, the theme's code invokes \`vcs_info'
1993           accordingly. Default (left): rc change-root user at host path vcs
1994           percent; Default (right): sad-smiley
1995
1996     Available styles in 'items:<item>' are: pre, post. These are strings that
1997     are inserted before (pre) and after (post) the item in question. Thus, the
1998     following would cause the user name to be printed in red instead of the
1999     default blue:
2000
2001         zstyle ':prompt:grml:*:items:user' pre '%F{red}'
2002
2003     Note, that the \`post' style may remain at its default value, because its
2004     default value is '%f', which turns the foreground text attribute off (which
2005     is exactly, what is still required with the new \`pre' value).
2006 __EOF0__
2007 }
2008
2009 function prompt_grml-chroot_help () {
2010     <<__EOF0__
2011   prompt grml-chroot
2012
2013     This is a variation of the grml prompt, see: prompt -h grml
2014
2015     The main difference is the default value of the \`items' style. The rest
2016     behaves exactly the same. Here are the defaults for \`grml-chroot':
2017
2018         - left: grml-chroot user at host path percent
2019         - right: (empty list)
2020 __EOF0__
2021 }
2022
2023 function prompt_grml-large_help () {
2024     <<__EOF0__
2025   prompt grml-large
2026
2027     This is a variation of the grml prompt, see: prompt -h grml
2028
2029     The main difference is the default value of the \`items' style. In
2030     particular, this theme uses _two_ lines instead of one with the plain
2031     \`grml' theme. The rest behaves exactly the same. Here are the defaults
2032     for \`grml-large':
2033
2034         - left: rc jobs history shell-level change-root time date newline user
2035                 at host path vcs percent
2036         - right: sad-smiley
2037 __EOF0__
2038 }
2039
2040 function grml_prompt_setup () {
2041     emulate -L zsh
2042     autoload -Uz vcs_info
2043     # The following autoload is disabled for now, since this setup includes a
2044     # static version of the â€˜add-zsh-hook’ function above. It needs to be
2045     # reenabled as soon as that static definition is removed again.
2046     #autoload -Uz add-zsh-hook
2047     add-zsh-hook precmd prompt_$1_precmd
2048 }
2049
2050 function prompt_grml_setup () {
2051     grml_prompt_setup grml
2052 }
2053
2054 function prompt_grml-chroot_setup () {
2055     grml_prompt_setup grml-chroot
2056 }
2057
2058 function prompt_grml-large_setup () {
2059     grml_prompt_setup grml-large
2060 }
2061
2062 # These maps define default tokens and pre-/post-decoration for items to be
2063 # used within the themes. All defaults may be customised in a context sensitive
2064 # matter by using zsh's `zstyle' mechanism.
2065 typeset -gA grml_prompt_pre_default \
2066             grml_prompt_post_default \
2067             grml_prompt_token_default \
2068             grml_prompt_token_function
2069
2070 grml_prompt_pre_default=(
2071     at                ''
2072     battery           ' '
2073     change-root       ''
2074     date              '%F{blue}'
2075     grml-chroot       '%F{red}'
2076     history           '%F{green}'
2077     host              ''
2078     jobs              '%F{cyan}'
2079     newline           ''
2080     path              '%B'
2081     percent           ''
2082     rc                '%B%F{red}'
2083     rc-always         ''
2084     sad-smiley        ''
2085     shell-level       '%F{red}'
2086     time              '%F{blue}'
2087     user              '%B%F{blue}'
2088     vcs               ''
2089 )
2090
2091 grml_prompt_post_default=(
2092     at                ''
2093     battery           ''
2094     change-root       ''
2095     date              '%f'
2096     grml-chroot       '%f '
2097     history           '%f'
2098     host              ''
2099     jobs              '%f'
2100     newline           ''
2101     path              '%b'
2102     percent           ''
2103     rc                '%f%b'
2104     rc-always         ''
2105     sad-smiley        ''
2106     shell-level       '%f'
2107     time              '%f'
2108     user              '%f%b'
2109     vcs               ''
2110 )
2111
2112 grml_prompt_token_default=(
2113     at                '@'
2114     battery           'GRML_BATTERY_LEVEL'
2115     change-root       'debian_chroot'
2116     date              '%D{%Y-%m-%d}'
2117     grml-chroot       'GRML_CHROOT'
2118     history           '{history#%!} '
2119     host              '%m '
2120     jobs              '[%j running job(s)] '
2121     newline           $'\n'
2122     path              '%40<..<%~%<< '
2123     percent           '%# '
2124     rc                '%(?..%? )'
2125     rc-always         '%?'
2126     sad-smiley        '%(?..:()'
2127     shell-level       '%(3L.+ .)'
2128     time              '%D{%H:%M:%S} '
2129     user              '%n'
2130     vcs               '0'
2131 )
2132
2133 function grml_theme_has_token () {
2134     if (( ARGC != 1 )); then
2135         printf 'usage: grml_theme_has_token <name>\n'
2136         return 1
2137     fi
2138     (( ${+grml_prompt_token_default[$1]} ))
2139 }
2140
2141 function GRML_theme_add_token_usage () {
2142     <<__EOF0__
2143   Usage: grml_theme_add_token <name> [-f|-i] <token/function> [<pre> <post>]
2144
2145     <name> is the name for the newly added token. If the \`-f' or \`-i' options
2146     are used, <token/function> is the name of the function (see below for
2147     details). Otherwise it is the literal token string to be used. <pre> and
2148     <post> are optional.
2149
2150   Options:
2151
2152     -f <function>   Use a function named \`<function>' each time the token
2153                     is to be expanded.
2154
2155     -i <function>   Use a function named \`<function>' to initialise the
2156                     value of the token _once_ at runtime.
2157
2158     The functions are called with one argument: the token's new name. The
2159     return value is expected in the \$REPLY parameter. The use of these
2160     options is mutually exclusive.
2161
2162     There is a utility function \`grml_theme_has_token', which you can use
2163     to test if a token exists before trying to add it. This can be a guard
2164     for situations in which a \`grml_theme_add_token' call may happen more
2165     than once.
2166
2167   Example:
2168
2169     To add a new token \`day' that expands to the current weekday in the
2170     current locale in green foreground colour, use this:
2171
2172       grml_theme_add_token day '%D{%A}' '%F{green}' '%f'
2173
2174     Another example would be support for \$VIRTUAL_ENV:
2175
2176       function virtual_env_prompt () {
2177         REPLY=\${VIRTUAL_ENV+\${VIRTUAL_ENV:t} }
2178       }
2179       grml_theme_add_token virtual-env -f virtual_env_prompt
2180
2181     After that, you will be able to use a changed \`items' style to
2182     assemble your prompt.
2183 __EOF0__
2184 }
2185
2186 function grml_theme_add_token () {
2187     emulate -L zsh
2188     local name token pre post
2189     local -i init funcall
2190
2191     if (( ARGC == 0 )); then
2192         GRML_theme_add_token_usage
2193         return 0
2194     fi
2195
2196     init=0
2197     funcall=0
2198     pre=''
2199     post=''
2200     name=$1
2201     shift
2202     if [[ $1 == '-f' ]]; then
2203         funcall=1
2204         shift
2205     elif [[ $1 == '-i' ]]; then
2206         init=1
2207         shift
2208     fi
2209
2210     if (( ARGC == 0 )); then
2211         printf '
2212 grml_theme_add_token: No token-string/function-name provided!\n\n'
2213         GRML_theme_add_token_usage
2214         return 1
2215     fi
2216     token=$1
2217     shift
2218     if (( ARGC != 0 && ARGC != 2 )); then
2219         printf '
2220 grml_theme_add_token: <pre> and <post> need to by specified _both_!\n\n'
2221         GRML_theme_add_token_usage
2222         return 1
2223     fi
2224     if (( ARGC )); then
2225         pre=$1
2226         post=$2
2227         shift 2
2228     fi
2229
2230     if grml_theme_has_token $name; then
2231         printf '
2232 grml_theme_add_token: Token `%s'\'' exists! Giving up!\n\n' $name
2233         GRML_theme_add_token_usage
2234         return 2
2235     fi
2236     if (( init )); then
2237         $token $name
2238         token=$REPLY
2239     fi
2240     grml_prompt_pre_default[$name]=$pre
2241     grml_prompt_post_default[$name]=$post
2242     if (( funcall )); then
2243         grml_prompt_token_function[$name]=$token
2244         grml_prompt_token_default[$name]=23
2245     else
2246         grml_prompt_token_default[$name]=$token
2247     fi
2248 }
2249
2250 function grml_typeset_and_wrap () {
2251     emulate -L zsh
2252     local target="$1"
2253     local new="$2"
2254     local left="$3"
2255     local right="$4"
2256
2257     if (( ${+parameters[$new]} )); then
2258         typeset -g "${target}=${(P)target}${left}${(P)new}${right}"
2259     fi
2260 }
2261
2262 function grml_prompt_addto () {
2263     emulate -L zsh
2264     local target="$1"
2265     local lr it apre apost new v
2266     local -a items
2267     shift
2268
2269     [[ $target == PS1 ]] && lr=left || lr=right
2270     zstyle -a ":prompt:${grmltheme}:${lr}:setup" items items || items=( "$@" )
2271     typeset -g "${target}="
2272     for it in "${items[@]}"; do
2273         zstyle -s ":prompt:${grmltheme}:${lr}:items:$it" pre apre \
2274             || apre=${grml_prompt_pre_default[$it]}
2275         zstyle -s ":prompt:${grmltheme}:${lr}:items:$it" post apost \
2276             || apost=${grml_prompt_post_default[$it]}
2277         zstyle -s ":prompt:${grmltheme}:${lr}:items:$it" token new \
2278             || new=${grml_prompt_token_default[$it]}
2279         typeset -g "${target}=${(P)target}${apre}"
2280         if (( ${+grml_prompt_token_function[$it]} )); then
2281             ${grml_prompt_token_function[$it]} $it
2282             typeset -g "${target}=${(P)target}${REPLY}"
2283         else
2284             case $it in
2285             battery)
2286                 grml_typeset_and_wrap $target $new '' ''
2287                 ;;
2288             change-root)
2289                 grml_typeset_and_wrap $target $new '(' ')'
2290                 ;;
2291             grml-chroot)
2292                 if [[ -n ${(P)new} ]]; then
2293                     typeset -g "${target}=${(P)target}(CHROOT)"
2294                 fi
2295                 ;;
2296             vcs)
2297                 v="vcs_info_msg_${new}_"
2298                 if (( ! vcscalled )); then
2299                     vcs_info
2300                     vcscalled=1
2301                 fi
2302                 if (( ${+parameters[$v]} )) && [[ -n "${(P)v}" ]]; then
2303                     typeset -g "${target}=${(P)target}${(P)v}"
2304                 fi
2305                 ;;
2306             *) typeset -g "${target}=${(P)target}${new}" ;;
2307             esac
2308         fi
2309         typeset -g "${target}=${(P)target}${apost}"
2310     done
2311 }
2312
2313 function prompt_grml_precmd () {
2314     emulate -L zsh
2315     local grmltheme=grml
2316     local -a left_items right_items
2317     left_items=(rc change-root user at host path vcs percent)
2318     right_items=(sad-smiley)
2319
2320     prompt_grml_precmd_worker
2321 }
2322
2323 function prompt_grml-chroot_precmd () {
2324     emulate -L zsh
2325     local grmltheme=grml-chroot
2326     local -a left_items right_items
2327     left_items=(grml-chroot user at host path percent)
2328     right_items=()
2329
2330     prompt_grml_precmd_worker
2331 }
2332
2333 function prompt_grml-large_precmd () {
2334     emulate -L zsh
2335     local grmltheme=grml-large
2336     local -a left_items right_items
2337     left_items=(rc jobs history shell-level change-root time date newline
2338                 user at host path vcs percent)
2339     right_items=(sad-smiley)
2340
2341     prompt_grml_precmd_worker
2342 }
2343
2344 function prompt_grml_precmd_worker () {
2345     emulate -L zsh
2346     local -i vcscalled=0
2347
2348     grml_prompt_addto PS1 "${left_items[@]}"
2349     if zstyle -T ":prompt:${grmltheme}:right:setup" use-rprompt; then
2350         grml_prompt_addto RPS1 "${right_items[@]}"
2351     fi
2352 }
2353
2354 grml_prompt_fallback() {
2355     setopt prompt_subst
2356     precmd() {
2357         (( ${+functions[vcs_info]} )) && vcs_info
2358     }
2359
2360     p0="${RED}%(?..%? )${WHITE}${debian_chroot:+($debian_chroot)}"
2361     p1="${BLUE}%n${NO_COLOR}@%m %40<...<%B%~%b%<< "'${vcs_info_msg_0_}'"%# "
2362     if (( EUID == 0 )); then
2363         PROMPT="${BLUE}${p0}${RED}${p1}"
2364     else
2365         PROMPT="${RED}${p0}${BLUE}${p1}"
2366     fi
2367     unset p0 p1
2368 }
2369
2370 if zrcautoload promptinit && promptinit 2>/dev/null ; then
2371     # Since we define the required functions in here and not in files in
2372     # $fpath, we need to stick the theme's name into `$prompt_themes'
2373     # ourselves, since promptinit does not pick them up otherwise.
2374     prompt_themes+=( grml grml-chroot grml-large )
2375     # Also, keep the array sorted...
2376     prompt_themes=( "${(@on)prompt_themes}" )
2377 else
2378     print 'Notice: no promptinit available :('
2379     grml_prompt_fallback
2380 fi
2381
2382 if is437; then
2383     # The prompt themes use modern features of zsh, that require at least
2384     # version 4.3.7 of the shell. Use the fallback otherwise.
2385     if [[ $GRML_DISPLAY_BATTERY -gt 0 ]]; then
2386         zstyle ':prompt:grml:right:setup' items sad-smiley battery
2387         add-zsh-hook precmd battery
2388     fi
2389     if [[ "$TERM" == dumb ]] ; then
2390         zstyle ":prompt:grml(|-large|-chroot):*:items:grml-chroot" pre ''
2391         zstyle ":prompt:grml(|-large|-chroot):*:items:grml-chroot" post ' '
2392         for i in rc user path jobs history date time shell-level; do
2393             zstyle ":prompt:grml(|-large|-chroot):*:items:$i" pre ''
2394             zstyle ":prompt:grml(|-large|-chroot):*:items:$i" post ''
2395         done
2396         unset i
2397         zstyle ':prompt:grml(|-large|-chroot):right:setup' use-rprompt false
2398     elif (( EUID == 0 )); then
2399         zstyle ':prompt:grml(|-large|-chroot):*:items:user' pre '%B%F{red}'
2400     fi
2401
2402     # Finally enable one of the prompts.
2403     if [[ -n $GRML_CHROOT ]]; then
2404         prompt grml-chroot
2405     elif [[ $GRMLPROMPT -gt 0 ]]; then
2406         prompt grml-large
2407     else
2408         prompt grml
2409     fi
2410 else
2411     grml_prompt_fallback
2412 fi
2413
2414 # Terminal-title wizardry
2415
2416 function ESC_print () {
2417     info_print $'\ek' $'\e\\' "$@"
2418 }
2419 function set_title () {
2420     info_print  $'\e]0;' $'\a' "$@"
2421 }
2422
2423 function info_print () {
2424     local esc_begin esc_end
2425     esc_begin="$1"
2426     esc_end="$2"
2427     shift 2
2428     printf '%s' ${esc_begin}
2429     printf '%s' "$*"
2430     printf '%s' "${esc_end}"
2431 }
2432
2433 function grml_reset_screen_title () {
2434     # adjust title of xterm
2435     # see http://www.faqs.org/docs/Linux-mini/Xterm-Title.html
2436     [[ ${NOTITLE:-} -gt 0 ]] && return 0
2437     case $TERM in
2438         (xterm*|rxvt*)
2439             set_title ${(%):-"%n@%m: %~"}
2440             ;;
2441     esac
2442 }
2443
2444 function grml_vcs_to_screen_title () {
2445     if [[ $TERM == screen* ]] ; then
2446         if [[ -n ${vcs_info_msg_1_} ]] ; then
2447             ESC_print ${vcs_info_msg_1_}
2448         else
2449             ESC_print "zsh"
2450         fi
2451     fi
2452 }
2453
2454 function grml_maintain_name () {
2455     # set hostname if not running on host with name 'grml'
2456     if [[ -n "$HOSTNAME" ]] && [[ "$HOSTNAME" != $(hostname) ]] ; then
2457        NAME="@$HOSTNAME"
2458     fi
2459 }
2460
2461 function grml_cmd_to_screen_title () {
2462     # get the name of the program currently running and hostname of local
2463     # machine set screen window title if running in a screen
2464     if [[ "$TERM" == screen* ]] ; then
2465         local CMD="${1[(wr)^(*=*|sudo|ssh|-*)]}$NAME"
2466         ESC_print ${CMD}
2467     fi
2468 }
2469
2470 function grml_control_xterm_title () {
2471     case $TERM in
2472         (xterm*|rxvt*)
2473             set_title "${(%):-"%n@%m:"}" "$1"
2474             ;;
2475     esac
2476 }
2477
2478 # The following autoload is disabled for now, since this setup includes a
2479 # static version of the â€˜add-zsh-hook’ function above. It needs to be
2480 # reenabled as soon as that static definition is removed again.
2481 #zrcautoload add-zsh-hook || add-zsh-hook () { :; }
2482 if [[ $NOPRECMD -eq 0 ]]; then
2483     add-zsh-hook precmd grml_reset_screen_title
2484     add-zsh-hook precmd grml_vcs_to_screen_title
2485     add-zsh-hook preexec grml_maintain_name
2486     add-zsh-hook preexec grml_cmd_to_screen_title
2487     if [[ $NOTITLE -eq 0 ]]; then
2488         add-zsh-hook preexec grml_control_xterm_title
2489     fi
2490 fi
2491
2492 # 'hash' some often used directories
2493 #d# start
2494 hash -d deb=/var/cache/apt/archives
2495 hash -d doc=/usr/share/doc
2496 hash -d linux=/lib/modules/$(command uname -r)/build/
2497 hash -d log=/var/log
2498 hash -d slog=/var/log/syslog
2499 hash -d src=/usr/src
2500 hash -d www=/var/www
2501 #d# end
2502
2503 # some aliases
2504 if check_com -c screen ; then
2505     if [[ $UID -eq 0 ]] ; then
2506         if [[ -r /etc/grml/screenrc ]]; then
2507             alias screen="${commands[screen]} -c /etc/grml/screenrc"
2508         fi
2509     elif [[ -r $HOME/.screenrc ]] ; then
2510         alias screen="${commands[screen]} -c $HOME/.screenrc"
2511     else
2512         if [[ -r /etc/grml/screenrc_grml ]]; then
2513             alias screen="${commands[screen]} -c /etc/grml/screenrc_grml"
2514         else
2515             if [[ -r /etc/grml/screenrc ]]; then
2516                 alias screen="${commands[screen]} -c /etc/grml/screenrc"
2517             fi
2518         fi
2519     fi
2520 fi
2521
2522 # do we have GNU ls with color-support?
2523 if [[ "$TERM" != dumb ]]; then
2524     #a1# List files with colors (\kbd{ls \ldots})
2525     alias ls="command ls ${ls_options:+${ls_options[*]}}"
2526     #a1# List all files, with colors (\kbd{ls -la \ldots})
2527     alias la="command ls -la ${ls_options:+${ls_options[*]}}"
2528     #a1# List files with long colored list, without dotfiles (\kbd{ls -l \ldots})
2529     alias ll="command ls -l ${ls_options:+${ls_options[*]}}"
2530     #a1# List files with long colored list, human readable sizes (\kbd{ls -hAl \ldots})
2531     alias lh="command ls -hAl ${ls_options:+${ls_options[*]}}"
2532     #a1# List files with long colored list, append qualifier to filenames (\kbd{ls -l \ldots})\\&\quad(\kbd{/} for directories, \kbd{@} for symlinks ...)
2533     alias l="command ls -l ${ls_options:+${ls_options[*]}}"
2534 else
2535     alias la='command ls -la'
2536     alias ll='command ls -l'
2537     alias lh='command ls -hAl'
2538     alias l='command ls -l'
2539 fi
2540
2541 alias mdstat='cat /proc/mdstat'
2542 alias ...='cd ../../'
2543
2544 # generate alias named "$KERNELVERSION-reboot" so you can use boot with kexec:
2545 if [[ -x /sbin/kexec ]] && [[ -r /proc/cmdline ]] ; then
2546     alias "$(uname -r)-reboot"="kexec -l --initrd=/boot/initrd.img-"$(uname -r)" --command-line=\"$(cat /proc/cmdline)\" /boot/vmlinuz-"$(uname -r)""
2547 fi
2548
2549 # see http://www.cl.cam.ac.uk/~mgk25/unicode.html#term for details
2550 alias term2iso="echo 'Setting terminal to iso mode' ; print -n '\e%@'"
2551 alias term2utf="echo 'Setting terminal to utf-8 mode'; print -n '\e%G'"
2552
2553 # make sure it is not assigned yet
2554 [[ -n ${aliases[utf2iso]} ]] && unalias utf2iso
2555 utf2iso() {
2556     if isutfenv ; then
2557         local ENV
2558         for ENV in $(env | command grep -i '.utf') ; do
2559             eval export "$(echo $ENV | sed 's/UTF-8/iso885915/ ; s/utf8/iso885915/')"
2560         done
2561     fi
2562 }
2563
2564 # make sure it is not assigned yet
2565 [[ -n ${aliases[iso2utf]} ]] && unalias iso2utf
2566 iso2utf() {
2567     if ! isutfenv ; then
2568         local ENV
2569         for ENV in $(env | command grep -i '\.iso') ; do
2570             eval export "$(echo $ENV | sed 's/iso.*/UTF-8/ ; s/ISO.*/UTF-8/')"
2571         done
2572     fi
2573 }
2574
2575 # especially for roadwarriors using GNU screen and ssh:
2576 if ! check_com asc &>/dev/null ; then
2577   asc() { autossh -t "$@" 'screen -RdU' }
2578   compdef asc=ssh
2579 fi
2580
2581 #f1# Hints for the use of zsh on grml
2582 zsh-help() {
2583     print "$bg[white]$fg[black]
2584 zsh-help - hints for use of zsh on grml
2585 =======================================$reset_color"
2586
2587     print '
2588 Main configuration of zsh happens in /etc/zsh/zshrc.
2589 That file is part of the package grml-etc-core, if you want to
2590 use them on a non-grml-system just get the tar.gz from
2591 http://deb.grml.org/ or (preferably) get it from the git repository:
2592
2593   http://git.grml.org/f/grml-etc-core/etc/zsh/zshrc
2594
2595 This version of grml'\''s zsh setup does not use skel/.zshrc anymore.
2596 The file is still there, but it is empty for backwards compatibility.
2597
2598 For your own changes use these two files:
2599     $HOME/.zshrc.pre
2600     $HOME/.zshrc.local
2601
2602 The former is sourced very early in our zshrc, the latter is sourced
2603 very lately.
2604
2605 System wide configuration without touching configuration files of grml
2606 can take place in /etc/zsh/zshrc.local.
2607
2608 For information regarding zsh start at http://grml.org/zsh/
2609
2610 Take a look at grml'\''s zsh refcard:
2611 % xpdf =(zcat /usr/share/doc/grml-docs/zsh/grml-zsh-refcard.pdf.gz)
2612
2613 Check out the main zsh refcard:
2614 % '$BROWSER' http://www.bash2zsh.com/zsh_refcard/refcard.pdf
2615
2616 And of course visit the zsh-lovers:
2617 % man zsh-lovers
2618
2619 You can adjust some options through environment variables when
2620 invoking zsh without having to edit configuration files.
2621 Basically meant for bash users who are not used to the power of
2622 the zsh yet. :)
2623
2624   "NOCOR=1    zsh" => deactivate automatic correction
2625   "NOMENU=1   zsh" => do not use auto menu completion
2626                       (note: use ctrl-d for completion instead!)
2627   "NOPRECMD=1 zsh" => disable the precmd + preexec commands (set GNU screen title)
2628   "NOTITLE=1  zsh" => disable setting the title of xterms without disabling
2629                       preexec() and precmd() completely
2630   "GRML_DISPLAY_BATTERY=1  zsh"
2631                    => activate battery status on right side of prompt (WIP)
2632   "COMMAND_NOT_FOUND=1 zsh"
2633                    => Enable a handler if an external command was not found
2634                       The command called in the handler can be altered by setting
2635                       the GRML_ZSH_CNF_HANDLER variable, the default is:
2636                       "/usr/share/command-not-found/command-not-found"
2637
2638 A value greater than 0 is enables a feature; a value equal to zero
2639 disables it. If you like one or the other of these settings, you can
2640 add them to ~/.zshrc.pre to ensure they are set when sourcing grml'\''s
2641 zshrc.'
2642
2643     print "
2644 $bg[white]$fg[black]
2645 Please report wishes + bugs to the grml-team: http://grml.org/bugs/
2646 Enjoy your grml system with the zsh!$reset_color"
2647 }
2648
2649 # debian stuff
2650 if [[ -r /etc/debian_version ]] ; then
2651     #a3# Execute \kbd{apt-cache search}
2652     alias acs='apt-cache search'
2653     #a3# Execute \kbd{apt-cache show}
2654     alias acsh='apt-cache show'
2655     #a3# Execute \kbd{apt-cache policy}
2656     alias acp='apt-cache policy'
2657     #a3# Execute \kbd{apt-get dist-upgrade}
2658     salias adg="apt-get dist-upgrade"
2659     #a3# Execute \kbd{apt-get install}
2660     salias agi="apt-get install"
2661     #a3# Execute \kbd{aptitude install}
2662     salias ati="aptitude install"
2663     #a3# Execute \kbd{apt-get upgrade}
2664     salias ag="apt-get upgrade"
2665     #a3# Execute \kbd{apt-get update}
2666     salias au="apt-get update"
2667     #a3# Execute \kbd{aptitude update ; aptitude safe-upgrade}
2668     salias -a up="aptitude update ; aptitude safe-upgrade"
2669     #a3# Execute \kbd{dpkg-buildpackage}
2670     alias dbp='dpkg-buildpackage'
2671     #a3# Execute \kbd{grep-excuses}
2672     alias ge='grep-excuses'
2673
2674     # get a root shell as normal user in live-cd mode:
2675     if isgrmlcd && [[ $UID -ne 0 ]] ; then
2676        alias su="sudo su"
2677     fi
2678
2679     #a1# Take a look at the syslog: \kbd{\$PAGER /var/log/syslog}
2680     salias llog="$PAGER /var/log/syslog"     # take a look at the syslog
2681     #a1# Take a look at the syslog: \kbd{tail -f /var/log/syslog}
2682     salias tlog="tail -f /var/log/syslog"    # follow the syslog
2683 fi
2684
2685 # sort installed Debian-packages by size
2686 if check_com -c dpkg-query ; then
2687     #a3# List installed Debian-packages sorted by size
2688     alias debs-by-size="dpkg-query -Wf 'x \${Installed-Size} \${Package} \${Status}\n' | sed -ne '/^x  /d' -e '/^x \(.*\) install ok installed$/s//\1/p' | sort -nr"
2689 fi
2690
2691 # if cdrecord is a symlink (to wodim) or isn't present at all warn:
2692 if [[ -L /usr/bin/cdrecord ]] || ! check_com -c cdrecord; then
2693     if check_com -c wodim; then
2694         cdrecord() {
2695             <<__EOF0__
2696 cdrecord is not provided under its original name by Debian anymore.
2697 See #377109 in the BTS of Debian for more details.
2698
2699 Please use the wodim binary instead
2700 __EOF0__
2701             return 1
2702         }
2703     fi
2704 fi
2705
2706 # Use hard limits, except for a smaller stack and no core dumps
2707 unlimit
2708 is425 && limit stack 8192
2709 isgrmlcd && limit core 0 # important for a live-cd-system
2710 limit -s
2711
2712 # grmlstuff
2713 grmlstuff() {
2714 # people should use 'grml-x'!
2715     if check_com -c 915resolution; then
2716         855resolution() {
2717             echo "Please use 915resolution as resolution modifying tool for Intel \
2718 graphic chipset."
2719             return -1
2720         }
2721     fi
2722
2723     #a1# Output version of running grml
2724     alias grml-version='cat /etc/grml_version'
2725
2726     if check_com -c grml-debootstrap ; then
2727         debian2hd() {
2728             echo "Installing debian to harddisk is possible by using grml-debootstrap."
2729             return 1
2730         }
2731     fi
2732 }
2733
2734 # now run the functions
2735 isgrml && checkhome
2736 is4    && isgrml    && grmlstuff
2737 is4    && grmlcomp
2738
2739 # keephack
2740 is4 && xsource "/etc/zsh/keephack"
2741
2742 # wonderful idea of using "e" glob qualifier by Peter Stephenson
2743 # You use it as follows:
2744 # $ NTREF=/reference/file
2745 # $ ls -l *(e:nt:)
2746 # This lists all the files in the current directory newer than the reference file.
2747 # You can also specify the reference file inline; note quotes:
2748 # $ ls -l *(e:'nt ~/.zshenv':)
2749 is4 && nt() {
2750     if [[ -n $1 ]] ; then
2751         local NTREF=${~1}
2752     fi
2753     [[ $REPLY -nt $NTREF ]]
2754 }
2755
2756 # shell functions
2757
2758 #f1# Reload an autoloadable function
2759 freload() { while (( $# )); do; unfunction $1; autoload -U $1; shift; done }
2760 compdef _functions freload
2761
2762 #
2763 # Usage:
2764 #
2765 #      e.g.:   a -> b -> c -> d  ....
2766 #
2767 #      sll a
2768 #
2769 #
2770 #      if parameter is given with leading '=', lookup $PATH for parameter and resolve that
2771 #
2772 #      sll =java
2773 #
2774 #      Note: limit for recursive symlinks on linux:
2775 #            http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/tree/fs/namei.c?id=refs/heads/master#l808
2776 #            This limits recursive symlink follows to 8,
2777 #            while limiting consecutive symlinks to 40.
2778 #
2779 #      When resolving and displaying information about symlinks, no check is made
2780 #      that the displayed information does make any sense on your OS.
2781 #      We leave that decission to the user.
2782 #
2783 #      The zstat module is used to detect symlink loops. zstat is available since zsh4.
2784 #      With an older zsh you will need to abort with <C-c> in that case.
2785 #      When a symlink loop is detected, a warning ist printed and further processing is stopped.
2786 #
2787 #      Module zstat is loaded by default in grml zshrc, no extra action needed for that.
2788 #
2789 #      Known bugs:
2790 #      If you happen to come accross a symlink that points to a destination on an other partition
2791 #      with the same inode number, that will be marked as symlink loop though it is not.
2792 #      Two hints for this situation:
2793 #      I)  Play lottery the same day, as you seem to be rather lucky right now.
2794 #      II) Send patches.
2795 #
2796 #      return status:
2797 #      0 upon success
2798 #      1 file/dir not accesible
2799 #      2 symlink loop detected
2800 #
2801 #f1# List symlinks in detail (more detailed version of 'readlink -f', 'whence -s' and 'namei -l')
2802 sll() {
2803     if [[ -z ${1} ]] ; then
2804         printf 'Usage: %s <symlink(s)>\n' "${0}"
2805         return 1
2806     fi
2807
2808     local file jumpd curdir
2809     local -i RTN LINODE i
2810     local -a SEENINODES
2811     curdir="${PWD}"
2812     RTN=0
2813
2814     for file in "${@}" ; do
2815         SEENINODES=()
2816         ls -l "${file:a}"   || RTN=1
2817
2818         while [[ -h "$file" ]] ; do
2819             if is4 ; then
2820                 LINODE=$(zstat -L +inode "${file}")
2821                 for i in ${SEENINODES} ; do
2822                     if (( ${i} == ${LINODE} )) ; then
2823                         builtin cd "${curdir}"
2824                         print "link loop detected, aborting!"
2825                         return 2
2826                     fi
2827                 done
2828                 SEENINODES+=${LINODE}
2829             fi
2830             jumpd="${file:h}"
2831             file="${file:t}"
2832
2833             if [[ -d ${jumpd} ]] ; then
2834                 builtin cd "${jumpd}"  || RTN=1
2835             fi
2836             file=$(readlink "$file")
2837
2838             jumpd="${file:h}"
2839             file="${file:t}"
2840
2841             if [[ -d ${jumpd} ]] ; then
2842                 builtin cd "${jumpd}"  || RTN=1
2843             fi
2844
2845             ls -l "${PWD}/${file}"     || RTN=1
2846         done
2847         shift 1
2848         if (( ${#} >= 1 )) ; then
2849             print ""
2850         fi
2851         builtin cd "${curdir}"
2852     done
2853     return ${RTN}
2854 }
2855
2856 # TODO: Is it supported to use pager settings like this?
2857 #   PAGER='less -Mr' - If so, the use of $PAGER here needs fixing
2858 # with respect to wordsplitting. (ie. ${=PAGER})
2859 if check_com -c $PAGER ; then
2860     #f3# View Debian's changelog of given package(s)
2861     dchange() {
2862         emulate -L zsh
2863         [[ -z "$1" ]] && printf 'Usage: %s <package_name(s)>\n' "$0" && return 1
2864
2865         local package
2866         for package in "$@" ; do
2867             if [[ -r /usr/share/doc/${package}/changelog.Debian.gz ]] ; then
2868                 $PAGER /usr/share/doc/${package}/changelog.Debian.gz
2869             elif [[ -r /usr/share/doc/${package}/changelog.gz ]] ; then
2870                 $PAGER /usr/share/doc/${package}/changelog.gz
2871             elif [[ -r /usr/share/doc/${package}/changelog ]] ; then
2872                 $PAGER /usr/share/doc/${package}/changelog
2873             else
2874                 if check_com -c aptitude ; then
2875                     echo "No changelog for package $package found, using aptitude to retrieve it."
2876                     aptitude changelog "$package"
2877                 elif check_com -c apt-get ; then
2878                     echo "No changelog for package $package found, using apt-get to retrieve it."
2879                     apt-get changelog "$package"
2880                 else
2881                     echo "No changelog for package $package found, sorry."
2882                 fi
2883             fi
2884         done
2885     }
2886     _dchange() { _files -W /usr/share/doc -/ }
2887     compdef _dchange dchange
2888
2889     #f3# View Debian's NEWS of a given package
2890     dnews() {
2891         emulate -L zsh
2892         if [[ -r /usr/share/doc/$1/NEWS.Debian.gz ]] ; then
2893             $PAGER /usr/share/doc/$1/NEWS.Debian.gz
2894         else
2895             if [[ -r /usr/share/doc/$1/NEWS.gz ]] ; then
2896                 $PAGER /usr/share/doc/$1/NEWS.gz
2897             else
2898                 echo "No NEWS file for package $1 found, sorry."
2899                 return 1
2900             fi
2901         fi
2902     }
2903     _dnews() { _files -W /usr/share/doc -/ }
2904     compdef _dnews dnews
2905
2906     #f3# View Debian's copyright of a given package
2907     dcopyright() {
2908         emulate -L zsh
2909         if [[ -r /usr/share/doc/$1/copyright ]] ; then
2910             $PAGER /usr/share/doc/$1/copyright
2911         else
2912             echo "No copyright file for package $1 found, sorry."
2913             return 1
2914         fi
2915     }
2916     _dcopyright() { _files -W /usr/share/doc -/ }
2917     compdef _dcopyright dcopyright
2918
2919     #f3# View upstream's changelog of a given package
2920     uchange() {
2921         emulate -L zsh
2922         if [[ -r /usr/share/doc/$1/changelog.gz ]] ; then
2923             $PAGER /usr/share/doc/$1/changelog.gz
2924         else
2925             echo "No changelog for package $1 found, sorry."
2926             return 1
2927         fi
2928     }
2929     _uchange() { _files -W /usr/share/doc -/ }
2930     compdef _uchange uchange
2931 fi
2932
2933 # zsh profiling
2934 profile() {
2935     ZSH_PROFILE_RC=1 zsh "$@"
2936 }
2937
2938 #f1# Edit an alias via zle
2939 edalias() {
2940     [[ -z "$1" ]] && { echo "Usage: edalias <alias_to_edit>" ; return 1 } || vared aliases'[$1]' ;
2941 }
2942 compdef _aliases edalias
2943
2944 #f1# Edit a function via zle
2945 edfunc() {
2946     [[ -z "$1" ]] && { echo "Usage: edfunc <function_to_edit>" ; return 1 } || zed -f "$1" ;
2947 }
2948 compdef _functions edfunc
2949
2950 # use it e.g. via 'Restart apache2'
2951 #m# f6 Start() \kbd{service \em{process}}\quad\kbd{start}
2952 #m# f6 Restart() \kbd{service \em{process}}\quad\kbd{restart}
2953 #m# f6 Stop() \kbd{service \em{process}}\quad\kbd{stop}
2954 #m# f6 Reload() \kbd{service \em{process}}\quad\kbd{reload}
2955 #m# f6 Force-Reload() \kbd{service \em{process}}\quad\kbd{force-reload}
2956 #m# f6 Status() \kbd{service \em{process}}\quad\kbd{status}
2957 if [[ -d /etc/init.d || -d /etc/service ]] ; then
2958     __start_stop() {
2959         local action_="${1:l}"  # e.g Start/Stop/Restart
2960         local service_="$2"
2961         local param_="$3"
2962
2963         local service_target_="$(readlink /etc/init.d/$service_)"
2964         if [[ $service_target_ == "/usr/bin/sv" ]]; then
2965             # runit
2966             case "${action_}" in
2967                 start) if [[ ! -e /etc/service/$service_ ]]; then
2968                            $SUDO ln -s "/etc/sv/$service_" "/etc/service/"
2969                        else
2970                            $SUDO "/etc/init.d/$service_" "${action_}" "$param_"
2971                        fi ;;
2972                 # there is no reload in runits sysv emulation
2973                 reload) $SUDO "/etc/init.d/$service_" "force-reload" "$param_" ;;
2974                 *) $SUDO "/etc/init.d/$service_" "${action_}" "$param_" ;;
2975             esac
2976         else
2977             # sysv/sysvinit-utils, upstart
2978             if check_com -c service ; then
2979               $SUDO service "$service_" "${action_}" "$param_"
2980             else
2981               $SUDO "/etc/init.d/$service_" "${action_}" "$param_"
2982             fi
2983         fi
2984     }
2985
2986     _grmlinitd() {
2987         local -a scripts
2988         scripts=( /etc/init.d/*(x:t) )
2989         _describe "service startup script" scripts
2990     }
2991
2992     for i in Start Restart Stop Force-Reload Reload Status ; do
2993         eval "$i() { __start_stop $i \"\$1\" \"\$2\" ; }"
2994         compdef _grmlinitd $i
2995     done
2996     builtin unset -v i
2997 fi
2998
2999 #f1# Provides useful information on globbing
3000 H-Glob() {
3001     echo -e "
3002     /      directories
3003     .      plain files
3004     @      symbolic links
3005     =      sockets
3006     p      named pipes (FIFOs)
3007     *      executable plain files (0100)
3008     %      device files (character or block special)
3009     %b     block special files
3010     %c     character special files
3011     r      owner-readable files (0400)
3012     w      owner-writable files (0200)
3013     x      owner-executable files (0100)
3014     A      group-readable files (0040)
3015     I      group-writable files (0020)
3016     E      group-executable files (0010)
3017     R      world-readable files (0004)
3018     W      world-writable files (0002)
3019     X      world-executable files (0001)
3020     s      setuid files (04000)
3021     S      setgid files (02000)
3022     t      files with the sticky bit (01000)
3023
3024   print *(m-1)          # Files modified up to a day ago
3025   print *(a1)           # Files accessed a day ago
3026   print *(@)            # Just symlinks
3027   print *(Lk+50)        # Files bigger than 50 kilobytes
3028   print *(Lk-50)        # Files smaller than 50 kilobytes
3029   print **/*.c          # All *.c files recursively starting in \$PWD
3030   print **/*.c~file.c   # Same as above, but excluding 'file.c'
3031   print (foo|bar).*     # Files starting with 'foo' or 'bar'
3032   print *~*.*           # All Files that do not contain a dot
3033   chmod 644 *(.^x)      # make all plain non-executable files publically readable
3034   print -l *(.c|.h)     # Lists *.c and *.h
3035   print **/*(g:users:)  # Recursively match all files that are owned by group 'users'
3036   echo /proc/*/cwd(:h:t:s/self//) # Analogous to >ps ax | awk '{print $1}'<"
3037 }
3038 alias help-zshglob=H-Glob
3039
3040 # grep for running process, like: 'any vim'
3041 any() {
3042     emulate -L zsh
3043     unsetopt KSH_ARRAYS
3044     if [[ -z "$1" ]] ; then
3045         echo "any - grep for process(es) by keyword" >&2
3046         echo "Usage: any <keyword>" >&2 ; return 1
3047     else
3048         ps xauwww | grep -i "${grep_options[@]}" "[${1[1]}]${1[2,-1]}"
3049     fi
3050 }
3051
3052
3053 # After resuming from suspend, system is paging heavily, leading to very bad interactivity.
3054 # taken from $LINUX-KERNELSOURCE/Documentation/power/swsusp.txt
3055 [[ -r /proc/1/maps ]] && \
3056 deswap() {
3057     print 'Reading /proc/[0-9]*/maps and sending output to /dev/null, this might take a while.'
3058     cat $(sed -ne 's:.* /:/:p' /proc/[0-9]*/maps | sort -u | grep -v '^/dev/')  > /dev/null
3059     print 'Finished, running "swapoff -a; swapon -a" may also be useful.'
3060 }
3061
3062 # a wrapper for vim, that deals with title setting
3063 #   VIM_OPTIONS
3064 #       set this array to a set of options to vim you always want
3065 #       to have set when calling vim (in .zshrc.local), like:
3066 #           VIM_OPTIONS=( -p )
3067 #       This will cause vim to send every file given on the
3068 #       commandline to be send to it's own tab (needs vim7).
3069 if check_com vim; then
3070     vim() {
3071         VIM_PLEASE_SET_TITLE='yes' command vim ${VIM_OPTIONS} "$@"
3072     }
3073 fi
3074
3075 ssl_hashes=( sha512 sha256 sha1 md5 )
3076
3077 for sh in ${ssl_hashes}; do
3078     eval 'ssl-cert-'${sh}'() {
3079         emulate -L zsh
3080         if [[ -z $1 ]] ; then
3081             printf '\''usage: %s <file>\n'\'' "ssh-cert-'${sh}'"
3082             return 1
3083         fi
3084         openssl x509 -noout -fingerprint -'${sh}' -in $1
3085     }'
3086 done; unset sh
3087
3088 ssl-cert-fingerprints() {
3089     emulate -L zsh
3090     local i
3091     if [[ -z $1 ]] ; then
3092         printf 'usage: ssl-cert-fingerprints <file>\n'
3093         return 1
3094     fi
3095     for i in ${ssl_hashes}
3096         do ssl-cert-$i $1;
3097     done
3098 }
3099
3100 ssl-cert-info() {
3101     emulate -L zsh
3102     if [[ -z $1 ]] ; then
3103         printf 'usage: ssl-cert-info <file>\n'
3104         return 1
3105     fi
3106     openssl x509 -noout -text -in $1
3107     ssl-cert-fingerprints $1
3108 }
3109
3110 # make sure our environment is clean regarding colors
3111 for var in BLUE RED GREEN CYAN YELLOW MAGENTA WHITE ; unset $var
3112 builtin unset -v var
3113
3114 # "persistent history"
3115 # just write important commands you always need to ~/.important_commands
3116 if [[ -r ~/.important_commands ]] ; then
3117     fc -R ~/.important_commands
3118 fi
3119
3120 # load the lookup subsystem if it's available on the system
3121 zrcautoload lookupinit && lookupinit
3122
3123 # variables
3124
3125 # set terminal property (used e.g. by msgid-chooser)
3126 export COLORTERM="yes"
3127
3128 # aliases
3129
3130 # general
3131 #a2# Execute \kbd{du -sch}
3132 alias da='du -sch'
3133
3134 # listing stuff
3135 #a2# Execute \kbd{ls -lSrah}
3136 alias dir="command ls -lSrah"
3137 #a2# Only show dot-directories
3138 alias lad='command ls -d .*(/)'
3139 #a2# Only show dot-files
3140 alias lsa='command ls -a .*(.)'
3141 #a2# Only files with setgid/setuid/sticky flag
3142 alias lss='command ls -l *(s,S,t)'
3143 #a2# Only show symlinks
3144 alias lsl='command ls -l *(@)'
3145 #a2# Display only executables
3146 alias lsx='command ls -l *(*)'
3147 #a2# Display world-{readable,writable,executable} files
3148 alias lsw='command ls -ld *(R,W,X.^ND/)'
3149 #a2# Display the ten biggest files
3150 alias lsbig="command ls -flh *(.OL[1,10])"
3151 #a2# Only show directories
3152 alias lsd='command ls -d *(/)'
3153 #a2# Only show empty directories
3154 alias lse='command ls -d *(/^F)'
3155 #a2# Display the ten newest files
3156 alias lsnew="command ls -rtlh *(D.om[1,10])"
3157 #a2# Display the ten oldest files
3158 alias lsold="command ls -rtlh *(D.Om[1,10])"
3159 #a2# Display the ten smallest files
3160 alias lssmall="command ls -Srl *(.oL[1,10])"
3161 #a2# Display the ten newest directories and ten newest .directories
3162 alias lsnewdir="command ls -rthdl *(/om[1,10]) .*(D/om[1,10])"
3163 #a2# Display the ten oldest directories and ten oldest .directories
3164 alias lsolddir="command ls -rthdl *(/Om[1,10]) .*(D/Om[1,10])"
3165
3166 # some useful aliases
3167 #a2# Remove current empty directory. Execute \kbd{cd ..; rmdir \$OLDCWD}
3168 alias rmcdir='cd ..; rmdir $OLDPWD || cd $OLDPWD'
3169
3170 #a2# ssh with StrictHostKeyChecking=no \\&\quad and UserKnownHostsFile unset
3171 alias insecssh='ssh -o "StrictHostKeyChecking=no" -o "UserKnownHostsFile=/dev/null"'
3172 #a2# scp with StrictHostKeyChecking=no \\&\quad and UserKnownHostsFile unset
3173 alias insecscp='scp -o "StrictHostKeyChecking=no" -o "UserKnownHostsFile=/dev/null"'
3174
3175 # work around non utf8 capable software in utf environment via $LANG and luit
3176 if check_com isutfenv && check_com luit ; then
3177     if check_com -c mrxvt ; then
3178         isutfenv && [[ -n "$LANG" ]] && \
3179             alias mrxvt="LANG=${LANG/(#b)(*)[.@]*/$match[1].iso885915} luit mrxvt"
3180     fi
3181
3182     if check_com -c aterm ; then
3183         isutfenv && [[ -n "$LANG" ]] && \
3184             alias aterm="LANG=${LANG/(#b)(*)[.@]*/$match[1].iso885915} luit aterm"
3185     fi
3186
3187     if check_com -c centericq ; then
3188         isutfenv && [[ -n "$LANG" ]] && \
3189             alias centericq="LANG=${LANG/(#b)(*)[.@]*/$match[1].iso885915} luit centericq"
3190     fi
3191 fi
3192
3193 # useful functions
3194
3195 #f5# Backup \kbd{file_or_folder {\rm to} file_or_folder\_timestamp}
3196 bk() {
3197     emulate -L zsh
3198     local current_date=$(date -u "+%Y-%m-%dT%H:%M:%SZ")
3199     local clean keep move verbose result all to_bk
3200     setopt extended_glob
3201     keep=1
3202     while getopts ":hacmrv" opt; do
3203         case $opt in
3204             a) (( all++ ));;
3205             c) unset move clean && (( ++keep ));;
3206             m) unset keep clean && (( ++move ));;
3207             r) unset move keep && (( ++clean ));;
3208             v) verbose="-v";;
3209             h) <<__EOF0__
3210 bk [-hcmv] FILE [FILE ...]
3211 bk -r [-av] [FILE [FILE ...]]
3212 Backup a file or folder in place and append the timestamp
3213 Remove backups of a file or folder, or all backups in the current directory
3214
3215 Usage:
3216 -h    Display this help text
3217 -c    Keep the file/folder as is, create a copy backup using cp(1) (default)
3218 -m    Move the file/folder, using mv(1)
3219 -r    Remove backups of the specified file or directory, using rm(1). If none
3220       is provided, remove all backups in the current directory.
3221 -a    Remove all (even hidden) backups.
3222 -v    Verbose
3223
3224 The -c, -r and -m options are mutually exclusive. If specified at the same time,
3225 the last one is used.
3226
3227 The return code is the sum of all cp/mv/rm return codes.
3228 __EOF0__
3229 return 0;;
3230             \?) bk -h >&2; return 1;;
3231         esac
3232     done
3233     shift "$((OPTIND-1))"
3234     if (( keep > 0 )); then
3235         if islinux || isfreebsd; then
3236             for to_bk in "$@"; do
3237                 cp $verbose -a "${to_bk%/}" "${to_bk%/}_$current_date"
3238                 (( result += $? ))
3239             done
3240         else
3241             for to_bk in "$@"; do
3242                 cp $verbose -pR "${to_bk%/}" "${to_bk%/}_$current_date"
3243                 (( result += $? ))
3244             done
3245         fi
3246     elif (( move > 0 )); then
3247         while (( $# > 0 )); do
3248             mv $verbose "${1%/}" "${1%/}_$current_date"
3249             (( result += $? ))
3250             shift
3251         done
3252     elif (( clean > 0 )); then
3253         if (( $# > 0 )); then
3254             for to_bk in "$@"; do
3255                 rm $verbose -rf "${to_bk%/}"_[0-9](#c4,)-(0[0-9]|1[0-2])-([0-2][0-9]|3[0-1])T([0-1][0-9]|2[0-3])(:[0-5][0-9])(#c2)Z
3256                 (( result += $? ))
3257             done
3258         else
3259             if (( all > 0 )); then
3260                 rm $verbose -rf *_[0-9](#c4,)-(0[0-9]|1[0-2])-([0-2][0-9]|3[0-1])T([0-1][0-9]|2[0-3])(:[0-5][0-9])(#c2)Z(D)
3261             else
3262                 rm $verbose -rf *_[0-9](#c4,)-(0[0-9]|1[0-2])-([0-2][0-9]|3[0-1])T([0-1][0-9]|2[0-3])(:[0-5][0-9])(#c2)Z
3263             fi
3264             (( result += $? ))
3265         fi
3266     fi
3267     return $result
3268 }
3269
3270 #f5# cd to directoy and list files
3271 cl() {
3272     emulate -L zsh
3273     cd $1 && ls -a
3274 }
3275
3276 # smart cd function, allows switching to /etc when running 'cd /etc/fstab'
3277 cd() {
3278     if (( ${#argv} == 1 )) && [[ -f ${1} ]]; then
3279         [[ ! -e ${1:h} ]] && return 1
3280         print "Correcting ${1} to ${1:h}"
3281         builtin cd ${1:h}
3282     else
3283         builtin cd "$@"
3284     fi
3285 }
3286
3287 #f5# Create Directoy and \kbd{cd} to it
3288 mkcd() {
3289     if (( ARGC != 1 )); then
3290         printf 'usage: mkcd <new-directory>\n'
3291         return 1;
3292     fi
3293     if [[ ! -d "$1" ]]; then
3294         command mkdir -p "$1"
3295     else
3296         printf '`%s'\'' already exists: cd-ing.\n' "$1"
3297     fi
3298     builtin cd "$1"
3299 }
3300
3301 #f5# Create temporary directory and \kbd{cd} to it
3302 cdt() {
3303     builtin cd "$(mktemp -d)"
3304     builtin pwd
3305 }
3306
3307 #f5# List files which have been accessed within the last {\it n} days, {\it n} defaults to 1
3308 accessed() {
3309     emulate -L zsh
3310     print -l -- *(a-${1:-1})
3311 }
3312
3313 #f5# List files which have been changed within the last {\it n} days, {\it n} defaults to 1
3314 changed() {
3315     emulate -L zsh
3316     print -l -- *(c-${1:-1})
3317 }
3318
3319 #f5# List files which have been modified within the last {\it n} days, {\it n} defaults to 1
3320 modified() {
3321     emulate -L zsh
3322     print -l -- *(m-${1:-1})
3323 }
3324 # modified() was named new() in earlier versions, add an alias for backwards compatibility
3325 check_com new || alias new=modified
3326
3327 # use colors when GNU grep with color-support
3328 if (( $#grep_options > 0 )); then
3329     o=${grep_options:+"${grep_options[*]}"}
3330     #a2# Execute \kbd{grep -{}-color=auto}
3331     alias grep='grep '$o
3332     alias egrep='egrep '$o
3333     unset o
3334 fi
3335
3336 # Translate DE<=>EN
3337 # 'translate' looks up a word in a file with language-to-language
3338 # translations (field separator should be " : "). A typical wordlist looks
3339 # like the following:
3340 #  | english-word : german-translation
3341 # It's also only possible to translate english to german but not reciprocal.
3342 # Use the following oneliner to reverse the sort order:
3343 #  $ awk -F ':' '{ print $2" : "$1" "$3 }' \
3344 #    /usr/local/lib/words/en-de.ISO-8859-1.vok > ~/.translate/de-en.ISO-8859-1.vok
3345 #f5# Translates a word
3346 trans() {
3347     emulate -L zsh
3348     case "$1" in
3349         -[dD]*)
3350             translate -l de-en $2
3351             ;;
3352         -[eE]*)
3353             translate -l en-de $2
3354             ;;
3355         *)
3356             echo "Usage: $0 { -D | -E }"
3357             echo "         -D == German to English"
3358             echo "         -E == English to German"
3359     esac
3360 }
3361
3362 # Usage: simple-extract <file>
3363 # Using option -d deletes the original archive file.
3364 #f5# Smart archive extractor
3365 simple-extract() {
3366     emulate -L zsh
3367     setopt extended_glob noclobber
3368     local ARCHIVE DELETE_ORIGINAL DECOMP_CMD USES_STDIN USES_STDOUT GZTARGET WGET_CMD
3369     local RC=0
3370     zparseopts -D -E "d=DELETE_ORIGINAL"
3371     for ARCHIVE in "${@}"; do
3372         case $ARCHIVE in
3373             *(tar.bz2|tbz2|tbz))
3374                 DECOMP_CMD="tar -xvjf -"
3375                 USES_STDIN=true
3376                 USES_STDOUT=false
3377                 ;;
3378             *(tar.gz|tgz))
3379                 DECOMP_CMD="tar -xvzf -"
3380                 USES_STDIN=true
3381                 USES_STDOUT=false
3382                 ;;
3383             *(tar.xz|txz|tar.lzma))
3384                 DECOMP_CMD="tar -xvJf -"
3385                 USES_STDIN=true
3386                 USES_STDOUT=false
3387                 ;;
3388             *tar)
3389                 DECOMP_CMD="tar -xvf -"
3390                 USES_STDIN=true
3391                 USES_STDOUT=false
3392                 ;;
3393             *rar)
3394                 DECOMP_CMD="unrar x"
3395                 USES_STDIN=false
3396                 USES_STDOUT=false
3397                 ;;
3398             *lzh)
3399                 DECOMP_CMD="lha x"
3400                 USES_STDIN=false
3401                 USES_STDOUT=false
3402                 ;;
3403             *7z)
3404                 DECOMP_CMD="7z x"
3405                 USES_STDIN=false
3406                 USES_STDOUT=false
3407                 ;;
3408             *(zip|jar))
3409                 DECOMP_CMD="unzip"
3410                 USES_STDIN=false
3411                 USES_STDOUT=false
3412                 ;;
3413             *deb)
3414                 DECOMP_CMD="ar -x"
3415                 USES_STDIN=false
3416                 USES_STDOUT=false
3417                 ;;
3418             *bz2)
3419                 DECOMP_CMD="bzip2 -d -c -"
3420                 USES_STDIN=true
3421                 USES_STDOUT=true
3422                 ;;
3423             *(gz|Z))
3424                 DECOMP_CMD="gzip -d -c -"
3425                 USES_STDIN=true
3426                 USES_STDOUT=true
3427                 ;;
3428             *(xz|lzma))
3429                 DECOMP_CMD="xz -d -c -"
3430                 USES_STDIN=true
3431                 USES_STDOUT=true
3432                 ;;
3433             *)
3434                 print "ERROR: '$ARCHIVE' has unrecognized archive type." >&2
3435                 RC=$((RC+1))
3436                 continue
3437                 ;;
3438         esac
3439
3440         if ! check_com ${DECOMP_CMD[(w)1]}; then
3441             echo "ERROR: ${DECOMP_CMD[(w)1]} not installed." >&2
3442             RC=$((RC+2))
3443             continue
3444         fi
3445
3446         GZTARGET="${ARCHIVE:t:r}"
3447         if [[ -f $ARCHIVE ]] ; then
3448
3449             print "Extracting '$ARCHIVE' ..."
3450             if $USES_STDIN; then
3451                 if $USES_STDOUT; then
3452                     ${=DECOMP_CMD} < "$ARCHIVE" > $GZTARGET
3453                 else
3454                     ${=DECOMP_CMD} < "$ARCHIVE"
3455                 fi
3456             else
3457                 if $USES_STDOUT; then
3458                     ${=DECOMP_CMD} "$ARCHIVE" > $GZTARGET
3459                 else
3460                     ${=DECOMP_CMD} "$ARCHIVE"
3461                 fi
3462             fi
3463             [[ $? -eq 0 && -n "$DELETE_ORIGINAL" ]] && rm -f "$ARCHIVE"
3464
3465         elif [[ "$ARCHIVE" == (#s)(https|http|ftp)://* ]] ; then
3466             if check_com curl; then
3467                 WGET_CMD="curl -L -s -o -"
3468             elif check_com wget; then
3469                 WGET_CMD="wget -q -O -"
3470             elif check_com fetch; then
3471                 WGET_CMD="fetch -q -o -"
3472             else
3473                 print "ERROR: neither wget, curl nor fetch is installed" >&2
3474                 RC=$((RC+4))
3475                 continue
3476             fi
3477             print "Downloading and Extracting '$ARCHIVE' ..."
3478             if $USES_STDIN; then
3479                 if $USES_STDOUT; then
3480                     ${=WGET_CMD} "$ARCHIVE" | ${=DECOMP_CMD} > $GZTARGET
3481                     RC=$((RC+$?))
3482                 else
3483                     ${=WGET_CMD} "$ARCHIVE" | ${=DECOMP_CMD}
3484                     RC=$((RC+$?))
3485                 fi
3486             else
3487                 if $USES_STDOUT; then
3488                     ${=DECOMP_CMD} =(${=WGET_CMD} "$ARCHIVE") > $GZTARGET
3489                 else
3490                     ${=DECOMP_CMD} =(${=WGET_CMD} "$ARCHIVE")
3491                 fi
3492             fi
3493
3494         else
3495             print "ERROR: '$ARCHIVE' is neither a valid file nor a supported URI." >&2
3496             RC=$((RC+8))
3497         fi
3498     done
3499     return $RC
3500 }
3501
3502 __archive_or_uri()
3503 {
3504     _alternative \
3505         'files:Archives:_files -g "*.(#l)(tar.bz2|tbz2|tbz|tar.gz|tgz|tar.xz|txz|tar.lzma|tar|rar|lzh|7z|zip|jar|deb|bz2|gz|Z|xz|lzma)"' \
3506         '_urls:Remote Archives:_urls'
3507 }
3508
3509 _simple_extract()
3510 {
3511     _arguments \
3512         '-d[delete original archivefile after extraction]' \
3513         '*:Archive Or Uri:__archive_or_uri'
3514 }
3515 compdef _simple_extract simple-extract
3516 alias se=simple-extract
3517
3518 #f5# Set all ulimit parameters to \kbd{unlimited}
3519 allulimit() {
3520     ulimit -c unlimited
3521     ulimit -d unlimited
3522     ulimit -f unlimited
3523     ulimit -l unlimited
3524     ulimit -n unlimited
3525     ulimit -s unlimited
3526     ulimit -t unlimited
3527 }
3528
3529 #f5# Change the xterm title from within GNU-screen
3530 xtrename() {
3531     emulate -L zsh
3532     if [[ $1 != "-f" ]] ; then
3533         if [[ -z ${DISPLAY} ]] ; then
3534             printf 'xtrename only makes sense in X11.\n'
3535             return 1
3536         fi
3537     else
3538         shift
3539     fi
3540     if [[ -z $1 ]] ; then
3541         printf 'usage: xtrename [-f] "title for xterm"\n'
3542         printf '  renames the title of xterm from _within_ screen.\n'
3543         printf '  also works without screen.\n'
3544         printf '  will not work if DISPLAY is unset, use -f to override.\n'
3545         return 0
3546     fi
3547     print -n "\eP\e]0;${1}\C-G\e\\"
3548     return 0
3549 }
3550
3551 # Create small urls via http://goo.gl using curl(1).
3552 # API reference: https://code.google.com/apis/urlshortener/
3553 function zurl() {
3554     emulate -L zsh
3555     setopt extended_glob
3556
3557     if [[ -z $1 ]]; then
3558         print "USAGE: zurl <URL>"
3559         return 1
3560     fi
3561
3562     local PN url prog api json contenttype item
3563     local -a data
3564     PN=$0
3565     url=$1
3566
3567     # Prepend 'http://' to given URL where necessary for later output.
3568     if [[ ${url} != http(s|)://* ]]; then
3569         url='http://'${url}
3570     fi
3571
3572     if check_com -c curl; then
3573         prog=curl
3574     else
3575         print "curl is not available, but mandatory for ${PN}. Aborting."
3576         return 1
3577     fi
3578     api='https://www.googleapis.com/urlshortener/v1/url'
3579     contenttype="Content-Type: application/json"
3580     json="{\"longUrl\": \"${url}\"}"
3581     data=(${(f)"$($prog --silent -H ${contenttype} -d ${json} $api)"})
3582     # Parse the response
3583     for item in "${data[@]}"; do
3584         case "$item" in
3585             ' '#'"id":'*)
3586                 item=${item#*: \"}
3587                 item=${item%\",*}
3588                 printf '%s\n' "$item"
3589                 return 0
3590                 ;;
3591         esac
3592     done
3593     return 1
3594 }
3595
3596 #f2# Find history events by search pattern and list them by date.
3597 whatwhen()  {
3598     emulate -L zsh
3599     local usage help ident format_l format_s first_char remain first last
3600     usage='USAGE: whatwhen [options] <searchstring> <search range>'
3601     help='Use `whatwhen -h'\'' for further explanations.'
3602     ident=${(l,${#${:-Usage: }},, ,)}
3603     format_l="${ident}%s\t\t\t%s\n"
3604     format_s="${format_l//(\\t)##/\\t}"
3605     # Make the first char of the word to search for case
3606     # insensitive; e.g. [aA]
3607     first_char=[${(L)1[1]}${(U)1[1]}]
3608     remain=${1[2,-1]}
3609     # Default search range is `-100'.
3610     first=${2:-\-100}
3611     # Optional, just used for `<first> <last>' given.
3612     last=$3
3613     case $1 in
3614         ("")
3615             printf '%s\n\n' 'ERROR: No search string specified. Aborting.'
3616             printf '%s\n%s\n\n' ${usage} ${help} && return 1
3617         ;;
3618         (-h)
3619             printf '%s\n\n' ${usage}
3620             print 'OPTIONS:'
3621             printf $format_l '-h' 'show help text'
3622             print '\f'
3623             print 'SEARCH RANGE:'
3624             printf $format_l "'0'" 'the whole history,'
3625             printf $format_l '-<n>' 'offset to the current history number; (default: -100)'
3626             printf $format_s '<[-]first> [<last>]' 'just searching within a give range'
3627             printf '\n%s\n' 'EXAMPLES:'
3628             printf ${format_l/(\\t)/} 'whatwhen grml' '# Range is set to -100 by default.'
3629             printf $format_l 'whatwhen zsh -250'
3630             printf $format_l 'whatwhen foo 1 99'
3631         ;;
3632         (\?)
3633             printf '%s\n%s\n\n' ${usage} ${help} && return 1
3634         ;;
3635         (*)
3636             # -l list results on stout rather than invoking $EDITOR.
3637             # -i Print dates as in YYYY-MM-DD.
3638             # -m Search for a - quoted - pattern within the history.
3639             fc -li -m "*${first_char}${remain}*" $first $last
3640         ;;
3641     esac
3642 }
3643
3644 # mercurial related stuff
3645 if check_com -c hg ; then
3646     # gnu like diff for mercurial
3647     # http://www.selenic.com/mercurial/wiki/index.cgi/TipsAndTricks
3648     #f5# GNU like diff for mercurial
3649     hgdi() {
3650         emulate -L zsh
3651         local i
3652         for i in $(hg status -marn "$@") ; diff -ubwd <(hg cat "$i") "$i"
3653     }
3654
3655     # build debian package
3656     #a2# Alias for \kbd{hg-buildpackage}
3657     alias hbp='hg-buildpackage'
3658
3659     # execute commands on the versioned patch-queue from the current repos
3660     alias mq='hg -R $(readlink -f $(hg root)/.hg/patches)'
3661
3662     # diffstat for specific version of a mercurial repository
3663     #   hgstat      => display diffstat between last revision and tip
3664     #   hgstat 1234 => display diffstat between revision 1234 and tip
3665     #f5# Diffstat for specific version of a mercurial repos
3666     hgstat() {
3667         emulate -L zsh
3668         [[ -n "$1" ]] && hg diff -r $1 -r tip | diffstat || hg export tip | diffstat
3669     }
3670
3671 fi # end of check whether we have the 'hg'-executable
3672
3673 # grml-small cleanups
3674
3675 # The following is used to remove zsh-config-items that do not work
3676 # in grml-small by default.
3677 # If you do not want these adjustments (for whatever reason), set
3678 # $GRMLSMALL_SPECIFIC to 0 in your .zshrc.pre file (which this configuration
3679 # sources if it is there).
3680
3681 if (( GRMLSMALL_SPECIFIC > 0 )) && isgrmlsmall ; then
3682
3683     unset abk[V]
3684     unalias    'V'      &> /dev/null
3685     unfunction vman     &> /dev/null
3686     unfunction viless   &> /dev/null
3687     unfunction 2html    &> /dev/null
3688
3689     # manpages are not in grmlsmall
3690     unfunction manzsh   &> /dev/null
3691     unfunction man2     &> /dev/null
3692
3693 fi
3694
3695 zrclocal
3696
3697 ## genrefcard.pl settings
3698
3699 ### doc strings for external functions from files
3700 #m# f5 grml-wallpaper() Sets a wallpaper (try completion for possible values)
3701
3702 ### example: split functions-search 8,16,24,32
3703 #@# split functions-search 8
3704
3705 ## END OF FILE #################################################################
3706 # vim:filetype=zsh foldmethod=marker autoindent expandtab shiftwidth=4
3707 # Local variables:
3708 # mode: sh
3709 # End: