diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2004-07-12 10:34:53 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2004-07-12 10:34:53 +0000 |
commit | bedf58cfceeac17fea0963c9af7aa7f0c0c537e3 (patch) | |
tree | 76195c321a685612377e44d5f1bed7dc95f26c84 | |
parent | ad81f0055b673940679cff95c1207213ea2e37e8 (diff) | |
download | zsh-bedf58cfceeac17fea0963c9af7aa7f0c0c537e3.tar.gz zsh-bedf58cfceeac17fea0963c9af7aa7f0c0c537e3.tar.xz zsh-bedf58cfceeac17fea0963c9af7aa7f0c0c537e3.zip |
NEWS: more additions from Oliver.
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | NEWS | 12 |
2 files changed, 13 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index 35b072bc0..5e1a995ab 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,7 @@ 2004-07-12 Peter Stephenson <pws@csr.com> * unposted: NEWS: read it through and tidied it up. + Also additions from Oliver. * 20151: NEWS: notes on (F) and history -p. 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. |