added insert-unicode-char
authorMichael Prokop <mika@grml.org>
Sat, 24 Feb 2007 19:51:18 +0000 (20:51 +0100)
committerMichael Prokop <mika@grml.org>
Sat, 24 Feb 2007 19:51:18 +0000 (20:51 +0100)
debian/changelog
etc/zsh/zshrc

index 55bbefd..1d041da 100644 (file)
@@ -5,6 +5,7 @@ grml-etc-core (0.2.23) unstable; urgency=low
       /bin/sh or /bin/bash. :-/
     - add a space character in some abbreviation expansions
       so it's better readable.
+    - added insert-unicode-char
   * /etc/skel/.zshrc:
     - added function ytdl (download video from youtube)
     - work around non utf8 capable software in utf environment
index 8c77a82..75ac0f6 100644 (file)
@@ -3,7 +3,7 @@
 # Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
 # Bug-Reports:   see http://grml.org/bugs/
 # License:       This file is licensed under the GPL v2.
-# Latest change: Sam Feb 24 19:06:28 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
 # }}}