From 4a4dbe16d82b4c8d441e79358003577c1ffdb440 Mon Sep 17 00:00:00 2001 From: Matt Lundin Date: Mon, 23 Jun 2014 09:17:54 -0500 Subject: [PATCH] Fix speedkeys to move subtrees up and down * 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 --- lisp/org.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/org.el b/lisp/org.el index c82fd06ea..2b57fc0a1 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) -- 2.11.4.GIT