aboutsummaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorJuri Linkov2014-11-18 23:33:42 +0200
committerJuri Linkov2014-11-18 23:33:42 +0200
commit5c0fbcfc8aa6ee13fbd4ea1516f25c804bebcf8c (patch)
tree9671af81c39d9c4197fa5369e9b62b29acf01ab6 /etc
parentcb4f666ade76181223c197fe38fc600ea4d7ab01 (diff)
downloademacs-5c0fbcfc8aa6ee13fbd4ea1516f25c804bebcf8c.tar.gz
emacs-5c0fbcfc8aa6ee13fbd4ea1516f25c804bebcf8c.zip
Use <up> and <down> keys to move point in the multi-line minibuffer.
* lisp/bindings.el (minibuffer-local-map): Rebind [down] from next-history-element to next-line-or-history-element, and [up] from previous-history-element to previous-line-or-history-element. * lisp/simple.el (next-line-or-history-element) (previous-line-or-history-element): New commands. http://lists.gnu.org/archive/html/emacs-devel/2014-11/msg00822.html
Diffstat (limited to 'etc')
-rw-r--r--etc/NEWS8
1 files changed, 8 insertions, 0 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 86e21c4b8fa..41b93242270 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -133,6 +133,14 @@ Unicode standards.
133 133
134* Changes in Specialized Modes and Packages in Emacs 25.1 134* Changes in Specialized Modes and Packages in Emacs 25.1
135 135
136** Minibuffer
137
138*** You can use <up> and <down> keys to move point in the multi-line
139minibuffer just as in an ordinary buffer. Only when point moves over
140the bottom/top of the minibuffer it goes to the next/previous history
141element. The new commands bound to <up> and <down> in the minibuffer:
142`next-line-or-history-element' and `previous-line-or-history-element'.
143
136** Search and Replace 144** Search and Replace
137 145
138*** Query-replace history is enhanced. 146*** Query-replace history is enhanced.