diff options
author | Peter Stephenson <p.w.stephenson@ntlworld.com> | 2013-10-25 22:27:07 +0100 |
---|---|---|
committer | Peter Stephenson <p.w.stephenson@ntlworld.com> | 2013-10-25 22:27:07 +0100 |
commit | 7a79f660db07283c25205af38a4a9fd8618db4d5 (patch) | |
tree | 3b2dd3a2167471057e8cb9ae9070754316a31495 /NEWS | |
parent | 5b30149638f45946c1a819010bd4d384dea76b5d (diff) | |
download | zsh-7a79f660db07283c25205af38a4a9fd8618db4d5.tar.gz zsh-7a79f660db07283c25205af38a4a9fd8618db4d5.tar.xz zsh-7a79f660db07283c25205af38a4a9fd8618db4d5.zip |
31890 + 31891: Add NEWS for new features since 5.0.2
Diffstat (limited to 'NEWS')
-rw-r--r-- | NEWS | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/NEWS b/NEWS index 1f131a205..beea90bab 100644 --- a/NEWS +++ b/NEWS @@ -17,6 +17,21 @@ similar to "functions -t" except that tracing is turned off for any functions called from the specified one(s) that don't also have the -t or -T flag. +The option FORCE_FLOAT has been added to force all arithmetic constants +to be treated as floating point. This is most useful locally within +functions or scripts performing floating point calculations. + +Individual pattern characters can be disabled. For example, to allow '^' +to be an ordinary character even if the option EXTENDED_GLOB is set, use +"disable -p '^'". + +The variable editing builtin vared can be given custom editing widgets +for initialisation and finishing. + +Hooks for adding history (the function zshaddhistory and the +array zshaddhistory_functions) can return status 2 to indicate that +history is to be saved internally within the shell but not written. + In file completion, the recursive-files style can be set to an array of patterns to match against "$PWD/". In any matched location, it is possibly to complete files in arbitrarily deep subdirectories without |