summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Lundin <mdl@imapmail.org>2014-06-23 09:17:54 -0500
committerBastien Guerry <bzg@altern.org>2014-06-23 16:55:21 +0200
commit4a4dbe16d82b4c8d441e79358003577c1ffdb440 (patch)
tree099ed282c338b8092748d0ee1203d325412cdc3a
parent69773248c505e6041bee9c039debe8f482d11d1a (diff)
downloadorg-mode-4a4dbe16d82b4c8d441e79358003577c1ffdb440.tar.gz
Fix speedkeys to move subtrees up and downrelease_8.3betabeta_8.3
* lisp/org.el (org-speed-commands-default): Bind "U" and "D" to `org-metaup' and `org-metadown'. Org speed keys were not updated to reflect the recent changes to org-shiftmetaup and org-shiftmetadown. As a result the default bindings for speedkeys "U" and "D" were destructive, since they moved only single lines. Binding them to org-metaup and org-metadown fixes the problem. Thanks to Marco Wahl for reporting the problem: http://permalink.gmane.org/gmane.emacs.orgmode/87873
-rw-r--r--lisp/org.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/org.el b/lisp/org.el
index c82fd06..2b57fc0 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -19523,8 +19523,8 @@ boundaries."
("s" . org-narrow-to-subtree)
("=" . org-columns)
("Outline Structure Editing")
- ("U" . org-shiftmetaup)
- ("D" . org-shiftmetadown)
+ ("U" . org-metaup)
+ ("D" . org-metadown)
("r" . org-metaright)
("l" . org-metaleft)
("R" . org-shiftmetaright)