X-Git-Url: https://git.grml.org/?a=blobdiff_plain;f=etc%2Fzsh%2Fzshrc;h=c38176afc64cb6ff96afeedee8cea2b2e28c0480;hb=fbb9d8dd636b098ba25558cfef0886ed10181028;hp=d7f98e383d2ab6823b1651bd3e455ec6414430c3;hpb=5532870e3ba9416a0c5699151e75555168bb7a33;p=grml-etc-core.git diff --git a/etc/zsh/zshrc b/etc/zsh/zshrc index d7f98e3..c38176a 100644 --- a/etc/zsh/zshrc +++ b/etc/zsh/zshrc @@ -3,7 +3,7 @@ # Authors: grml-team (grml.org), (c) Michael Prokop # Bug-Reports: see http://grml.org/bugs/ # License: This file is licensed under the GPL v2. -# Latest change: Don Dez 06 23:21:21 CET 2007 [mika] +# Latest change: Sam Dez 22 19:17:27 CET 2007 [mika] ################################################################################ # This file is sourced only for interactive shells. It # should contain commands to set up aliases, functions, @@ -570,8 +570,21 @@ if is4 && autoload -U edit-command-line && zle -N edit-command-line ; then bindkey '\ee' edit-command-line fi -#k# menu selection: pick item but stay in the menu -is4 && bindkey -M menuselect '\e^M' accept-and-menu-complete +if is4 && [[ -n ${(k)modules[zsh/complist]} ]] ; then + #k# menu selection: pick item but stay in the menu + bindkey -M menuselect '\e^M' accept-and-menu-complete + + # use the vi navigation keys (hjkl) besides cursor keys in menu completion + #bindkey -M menuselect 'h' vi-backward-char # left + #bindkey -M menuselect 'k' vi-up-line-or-history # up + #bindkey -M menuselect 'l' vi-forward-char # right + #bindkey -M menuselect 'j' vi-down-line-or-history # bottom + + # accept a completion and try to complete again by using menu + # completion; very useful with completing directories + # by using 'undo' one's got a simple file browser + bindkey -M menuselect '^o' accept-and-infer-next-history +fi # press "ctrl-e d" to insert the actual date in the form yyyy-mm-dd _bkdate() { BUFFER="$BUFFER$(date '+%F')"; CURSOR=$#BUFFER; } @@ -1012,21 +1025,20 @@ iso2utf() { } # set up software synthesizer via speakup -# TODO: make this a function? -alias swspeak=' - aumix -w 90 -v 90 -p 90 -m 90 - if ! [[ -r /dev/softsynth ]] ; then - flite -o play -t "Sorry, software synthesizer not available. Did you boot with swspeak bootoption?" - return 1 - else - setopt singlelinezle - unsetopt prompt_cr - export PS1="%m%# " - nice -n -20 speechd-up - sleep 2 - flite -o play -t "Finished setting up software synthesizer" - fi -' +swspeak() { + aumix -w 90 -v 90 -p 90 -m 90 + if ! [[ -r /dev/softsynth ]] ; then + flite -o play -t "Sorry, software synthesizer not available. Did you boot with swspeak bootoption?" + return 1 + else + setopt singlelinezle + unsetopt prompt_cr + export PS1="%m%# " + nice -n -20 speechd-up + sleep 2 + flite -o play -t "Finished setting up software synthesizer" + fi +} # I like clean prompt, so provide simple way to get that check_com 0 || alias 0='return 0'