From d1bf9a7df574c6aab7b1566f223e25ecbecde153 Mon Sep 17 00:00:00 2001 From: Bastien Guerry Date: Fri, 8 Feb 2013 19:39:17 +0100 Subject: [PATCH] org.el (org-speed-commands-default): Bind `B' and `F' to `org-previous-block' and `org-next-block' MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit * org.el (org-speed-commands-default): Bind `B' and `F' to `org-previous-block' and `org-next-block'. Thanks to Sébastien Vauban for suggesting this. --- lisp/org.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lisp/org.el b/lisp/org.el index 9e5b375a1..c8c15dde4 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -18597,6 +18597,8 @@ BEG and END default to the buffer boundaries." ("p" . (org-speed-move-safe 'outline-previous-visible-heading)) ("f" . (org-speed-move-safe 'org-forward-heading-same-level)) ("b" . (org-speed-move-safe 'org-backward-heading-same-level)) + ("F" . (org-speed-move-safe 'org-next-block)) + ("B" . (org-speed-move-safe 'org-previous-block)) ("u" . (org-speed-move-safe 'outline-up-heading)) ("j" . org-goto) ("g" . (org-refile t)) @@ -18617,7 +18619,7 @@ BEG and END default to the buffer boundaries." ("^" . org-sort) ("w" . org-refile) ("a" . org-archive-subtree-default-with-confirmation) - ("." . org-mark-subtree) + ("." . org-mark-subtree) ;; FIXME Better use @ (see C-c @) here? ("#" . org-toggle-comment) ("Clock Commands") ("I" . org-clock-in) -- 2.11.4.GIT