summaryrefslogtreecommitdiff
path: root/debian/NEWS
diff options
context:
space:
mode:
authorFrank Terbeck <ft@bewatermyfriend.org>2012-03-03 21:39:13 +0100
committerFrank Terbeck <ft@bewatermyfriend.org>2012-03-04 16:25:45 +0100
commitf481abf83793d5a44ce0db20e6ff7b7b50294e32 (patch)
tree485b442d229002d2b8d242c032d8ae406e64641e /debian/NEWS
parentcb9eb75f2bb6b038ce25b15383f0a32455f7b2a5 (diff)
downloadzsh-f481abf83793d5a44ce0db20e6ff7b7b50294e32.tar.gz
zsh-f481abf83793d5a44ce0db20e6ff7b7b50294e32.zip
Add debian/NEWS to document the keyboard changes
Diffstat (limited to 'debian/NEWS')
-rwxr-xr-xdebian/NEWS24
1 files changed, 24 insertions, 0 deletions
diff --git a/debian/NEWS b/debian/NEWS
new file mode 100755
index 000000000..94502c0f8
--- /dev/null
+++ b/debian/NEWS
@@ -0,0 +1,24 @@
+zsh (4.3.17-2) unstable; urgency=low
+
+ This update includes a rewrite of keyboard handling in `/etc/zsh/zshrc'.
+
+ The used method should be quite a bit more robust than the old one, and
+ should work out of the box for every terminal with a working terminfo entry.
+
+ If you do not want Debian's zshrc to mess with your keyboard setup, set the
+ following variable in your `.zshenv' file:
+
+ DEBIAN_PREVENT_KEYBOARD_CHANGES=yes
+
+ This change also removes the controversial vi-* bindings for the up and down
+ cursor keys (which was reported as #383737 and led to confusion with a
+ substantial number of users). If you want them back use the following snippet
+ in your `.zshrc' file (and without the above variable set):
+
+ for i in viins vicmd; do
+ bindkey -M "$i" "${key[Up]}" vi-up-line-or-history
+ bindkey -M "$i" "${key[Down]}" vi-down-line-or-history
+ done
+ unset i
+
+ -- Frank Terbeck <ft@bewatermyfriend.org> Sat, 03 Mar 2012 21:28:54 +0100