about summary refs log tree commit diff
path: root/NEWS
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2004-07-12 10:34:53 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2004-07-12 10:34:53 +0000
commitbedf58cfceeac17fea0963c9af7aa7f0c0c537e3 (patch)
tree76195c321a685612377e44d5f1bed7dc95f26c84 /NEWS
parentad81f0055b673940679cff95c1207213ea2e37e8 (diff)
downloadzsh-bedf58cfceeac17fea0963c9af7aa7f0c0c537e3.tar.gz
zsh-bedf58cfceeac17fea0963c9af7aa7f0c0c537e3.tar.xz
zsh-bedf58cfceeac17fea0963c9af7aa7f0c0c537e3.zip
NEWS: more additions from Oliver.
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS12
1 files changed, 12 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 0a33e3c29..890c1359f 100644
--- a/NEWS
+++ b/NEWS
@@ -5,6 +5,18 @@ CHANGES FROM PREVIOUS VERSIONS OF ZSH
 Changes since zsh version 4.2.0
 -------------------------------
 
+- The autoload and related builtins take options -k and -z to indicate
+  ksh or zsh autoloading style for given functions, making it possible
+  to mix and match.
+
+- Assignments to associative arrays can use the i and r index flags.
+  For example,
+    assoc[(i)alpha*]=bravo
+  sets the value for the element whose key matches the pattern `alpha*';
+    assoc[(r)activ*]=passive
+  sets the value for the element whose current value matches the pattern
+  `activ*'.
+
 - The glob qualifier F indicates a non-empty directory.  Hence *(F)
   indicates all subdirectories with entries, *(/^F) means all
   subdirectories with no entries.