aboutsummaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorEli Zaretskii2013-06-29 16:36:19 +0300
committerEli Zaretskii2013-06-29 16:36:19 +0300
commit4c672a0fec1d18cc1a445acf3e6935d681d4048f (patch)
treec8fb2626c93a226bed5eaa0b92f95925734e893f /etc
parent73b1b3ad6196234984a29298bc66eabf1299de66 (diff)
downloademacs-4c672a0fec1d18cc1a445acf3e6935d681d4048f.tar.gz
emacs-4c672a0fec1d18cc1a445acf3e6935d681d4048f.zip
Implement visual-order cursor motion.
src/xdisp.c (Fmove_point_visually): New function. lisp/bindings.el (visual-order-cursor-movement): New defcustom. (right-char, left-char): Provide visual-order cursor motion by calling move-point-visually. Update the doc strings. doc/emacs/basic.texi (Moving Point): Document visual-order-cursor-movement and its effect on right-char and left-char. doc/lispref/display.texi (Bidirectional Display): Document move-point-visually. etc/NEWS: Document the new feature.
Diffstat (limited to 'etc')
-rw-r--r--etc/NEWS7
1 files changed, 7 insertions, 0 deletions
diff --git a/etc/NEWS b/etc/NEWS
index f5ab7c60ce5..a6c93e7cf67 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -131,6 +131,13 @@ bound to <f11> and M-<f10>, respectively.
131** In keymaps where SPC scrolls, S-SPC now scrolls in the reverse direction. 131** In keymaps where SPC scrolls, S-SPC now scrolls in the reverse direction.
132Eg View mode, etc. 132Eg View mode, etc.
133 133
134+++
135** New option `visual-order-cursor-movement'.
136If this is non-nil, cursor motion with arrow keys will follow the
137visual order of characters on the screen: <left> always moves to the
138left, <right> always moves to the right, disregarding the surrounding
139bidirectional context.
140
134** New command `kmacro-to-register' to store keyboard macros in registers. 141** New command `kmacro-to-register' to store keyboard macros in registers.
135 142
136** Shell Script mode 143** Shell Script mode