X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=etc%2Fzsh%2Fzshrc;h=75ac0f69cae0642a04f6ffe3adc26f470f6c39a1;hb=d3741cae8fbe2b2f7386c75f9d0881a91570b125;hp=f45f9365a02034c250809f944374bc5ec2780c56;hpb=bf5493f17cbb327221eb800a43f1abfc93540322;p=grml-etc-core.git diff --git a/etc/zsh/zshrc b/etc/zsh/zshrc index f45f936..75ac0f6 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: Sam Feb 24 17:32:43 CET 2007 [mika] +# Latest change: Sam Feb 24 20:51:01 CET 2007 [mika] ################################################################################ # This file is sourced only for interactive shells. It # should contain commands to set up aliases, functions, @@ -139,6 +139,13 @@ fi bindkey '\e[8~' end-of-line # end #fi +# insert unicode character +# usage example: 'ctrl-x i' 00A7 'ctrl-x i' will give you an ยง +# See for example http://unicode.org/charts/ for unicode characters code + autoload insert-unicode-char + zle -N insert-unicode-char + bindkey '^Xi' insert-unicode-char + # bindkey '\eq' push-line-or-edit # }}}