summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Guerry <bzg@altern.org>2013-02-08 19:39:17 +0100
committerBastien Guerry <bzg@altern.org>2013-02-08 19:39:17 +0100
commitd1bf9a7df574c6aab7b1566f223e25ecbecde153 (patch)
treea47030e8c780004022a2463b63b8c71323a8395a
parentb636982b00189f7228db1f889dafa252499a2c2a (diff)
downloadorg-mode-d1bf9a7df574c6aab7b1566f223e25ecbecde153.tar.gz
org.el (org-speed-commands-default): Bind `B' and `F' to `org-previous-block' and `org-next-block'
* 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.
-rw-r--r--lisp/org.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/org.el b/lisp/org.el
index 9e5b375..c8c15dd 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)