summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS16
1 files changed, 16 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 86b0bd40c..44bf6b9c0 100644
--- a/NEWS
+++ b/NEWS
@@ -24,6 +24,22 @@ Changes from 5.0.7 to 5.0.8
as a reference to a variable, e.g. ${(ps.$sep.)foo} to split $foo
on a string given by $sep.
+- The option FORCE_FLOAT now forces variables, not just constants,
+ to floating point in arithmetic expressions.
+
+- The type of an assignment in arithmetic expressions, e.g. the
+ type seen by the variable res in $(( res = a = b )), is now
+ more logical and C-like.
+
+- The default binding of 'u' in vi command mode has changed to undo
+ multiple changes when invoked repeatedly. '^R' is now bound to redo
+ changes. To revert to toggling of the last edit use:
+ bindkey -a u vi-undo-change
+
+- Compatibility with Vim has been improved for vi editing mode. Most
+ notably, Vim style text objects are supported and the region can be
+ manipulated with vi commands in the same manner as Vim's visual mode.
+
- Elements of the watch variable may now be patterns.
- The logic for retrying history locking has been improved.