diff options
Diffstat (limited to 'NEWS')
-rw-r--r-- | NEWS | 19 |
1 files changed, 18 insertions, 1 deletions
@@ -4,9 +4,26 @@ CHANGES FROM PREVIOUS VERSIONS OF ZSH Note also the list of incompatibilities in the README file. -Changes from 5.3.1 to 5.4 +Changes from 5.4.2 to 5.5 ------------------------- +The effect of the NO_INTERACTIVE_COMMENTS option extends into $(...) and +`...` command substitutions when used on the command line. Previously, +comments were always recognized within command substitutions unless the +comment character "#" was disabled via reset of $histchars. + +An alternative assignment syntax for indicating indices for arrays +and keys for associative arrays: + +typeset -a array=([1]=first [2]=second) +typeset -A assoc=([key1]=val1 [key2]=val2) + +is allowed for compatibility with other shells. In the case of normal +arrays the new syntax can be mixed with the old. + +Changes from 5.3.1 to 5.4.2 +--------------------------- + The 'exec' and 'command' precommand modifiers, and options to them, are now parsed after parameter expansion. Previously, both the modifier and any options to it were parsed between alias expansion and parameter |