summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Guerry <bzg@altern.org>2013-02-11 14:20:36 +0100
committerBastien Guerry <bzg@altern.org>2013-02-11 14:20:36 +0100
commit652919fca0a1b710087bc163cdb8c23588073535 (patch)
tree6af5cd31f9926783ed9ea824c8db516051d92db8
parent1eccd207af32d74ff3a34ec9545dd2e414d8601d (diff)
downloadorg-mode-652919fca0a1b710087bc163cdb8c23588073535.tar.gz
Fix bindings for `org-next-block' and `org-preview-block'.
Thanks to François and Sébastien for reporting this.
-rw-r--r--lisp/org.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/org.el b/lisp/org.el
index 1663214..e886073 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -18473,8 +18473,8 @@ BEG and END default to the buffer boundaries."
(org-defkey org-mode-map "\C-c\C-_" 'org-down-element)
(org-defkey org-mode-map "\C-c\C-f" 'org-forward-heading-same-level)
(org-defkey org-mode-map "\C-c\C-b" 'org-backward-heading-same-level)
-(org-defkey org-mode-map "\C-c\C-F" 'org-next-block)
-(org-defkey org-mode-map "\C-c\C-B" 'org-previous-block)
+(org-defkey org-mode-map "\C-c\M-f" 'org-next-block)
+(org-defkey org-mode-map "\C-c\M-b" 'org-previous-block)
(org-defkey org-mode-map "\C-c$" 'org-archive-subtree)
(org-defkey org-mode-map "\C-c\C-x\C-s" 'org-advertized-archive-subtree)
(org-defkey org-mode-map "\C-c\C-x\C-a" 'org-archive-subtree-default)
@@ -18604,8 +18604,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))
+ ("F" . org-next-block)
+ ("B" . org-previous-block)
("u" . (org-speed-move-safe 'outline-up-heading))
("j" . org-goto)
("g" . (org-refile t))