1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-05-13 11:06:17 +02:00

NEWS: more additions from Oliver.

This commit is contained in:
Peter Stephenson 2004-07-12 10:34:53 +00:00
parent ad81f0055b
commit bedf58cfce
2 changed files with 13 additions and 0 deletions

View File

@ -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.

12
NEWS
View File

@ -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.