about summary refs log tree commit diff
path: root/NEWS
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2005-10-03 09:00:44 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2005-10-03 09:00:44 +0000
commit3fd42c46580ec478c2bfd3ac5746c0a5129ad60b (patch)
tree6a6aef77f9858850523b698671b522a8309f7ca4 /NEWS
parentdcc48ad81b0dee365ae5c3694103b06615c32351 (diff)
downloadzsh-3fd42c46580ec478c2bfd3ac5746c0a5129ad60b.tar.gz
zsh-3fd42c46580ec478c2bfd3ac5746c0a5129ad60b.tar.xz
zsh-3fd42c46580ec478c2bfd3ac5746c0a5129ad60b.zip
21790: initial attempt at documenting 4.3 release
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS31
1 files changed, 29 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index cacc08bf5..c2f77165b 100644
--- a/NEWS
+++ b/NEWS
@@ -2,8 +2,35 @@
 CHANGES FROM PREVIOUS VERSIONS OF ZSH
 -------------------------------------
 
-Changes since zsh version 4.2.0
--------------------------------
+Major changes between versions 4.2 and 4.3
+------------------------------------------
+
+- There is support for multibyte character sets in the line editor,
+  though not the main shell.  See Multibyte Character Support in INSTALL.
+
+- New option PROMPT_SP, on by default, to work around the problem that the
+  line editor can overwrite output with no newline at the end.
+
+- New option HIST_SAVE_BY_COPY (on by default): history is saved by
+  copying and renaming instead of directly overwriting.
+
+- New redirection syntax e.g. {myfd}>file opens a new file descriptor
+  and stores the number in $myfd, so that >&$myfd will work.  Chosen
+  not to break existing code.
+
+- New Posix-style zsh-specific tests [[:IDENT:]], [[:IFS:]],
+  [[:IFSSPACE:]], [[:WORD:]] test if character can appear in identifier,
+  is an IFS character, is an IFS whitespace character, or is considered
+  as part of a word (is alphanumeric or appears in $WORDCHARS).  Note
+  the pattern code doesn't yet handle multibyte characters.
+
+- The idiom =(<<<...) is optimised so that the shell internally turns
+  the ... into the contents of a file whose name is then substituted.
+
+- As always, many enhancements to completion functions.
+
+Changes in 4.2 since 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