summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Guerry <bzg@altern.org>2012-07-12 08:31:20 +0200
committerBastien Guerry <bzg@altern.org>2012-07-12 08:31:20 +0200
commit8610790a4e72caa1fb1bdaf07615095c96ad29a3 (patch)
tree80f5ef46ff092c68af693dbe6279d2bbd613e7fa
parent7d41c87aee24eefac07c399449eb4329ba6861a6 (diff)
downloadorg-mode-8610790a4e72caa1fb1bdaf07615095c96ad29a3.tar.gz
org.el: Update comment section about mapping outline.el commands.
-rw-r--r--lisp/org.el18
1 files changed, 11 insertions, 7 deletions
diff --git a/lisp/org.el b/lisp/org.el
index 5880435..be0549c 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -17593,29 +17593,33 @@ BEG and END default to the buffer boundaries."
(define-key org-mode-map [remap outline-demote] 'org-demote-subtree)
(define-key org-mode-map [remap outline-insert-heading] 'org-ctrl-c-ret)
-;; Outline functions from `outline-mode-prefix-map'
-;; that can not be remapped in Org:
+;; Outline functions from `outline-mode-prefix-map' that can not
+;; be remapped in Org:
+;;
;; - the column "key binding" shows whether the Outline function is still
;; available in Org mode on the same key that it has been bound to in
;; Outline mode:
;; - "overridden": key used for a different functionality in Org mode
;; - else: key still bound to the same Outline function in Org mode
+;;
;; | Outline function | key binding | Org replacement |
;; |------------------------------------+-------------+-----------------------|
;; | `outline-next-visible-heading' | `C-c C-n' | still same function |
;; | `outline-previous-visible-heading' | `C-c C-p' | still same function |
+;; | `outline-up-heading' | `C-c C-u' | still same function |
+;; | `outline-move-subtree-up' | `C-c C-^' | better: org-shiftup |
+;; | `outline-move-subtree-down' | overridden | better: org-shiftdown |
+;; | `show-entry' | overridden | no replacement |
;; | `show-children' | `C-c C-i' | visibility cycling |
+;; | `show-branches' | `C-c C-k' | still same function |
+;; | `show-subtree' | overridden | visibility cycling |
+;; | `show-all' | overridden | no replacement |
;; | `hide-subtree' | overridden | visibility cycling |
-;; | `outline-up-heading' | `C-c C-u' | still same function |
;; | `hide-body' | overridden | no replacement |
-;; | `show-all' | overridden | no replacement |
;; | `hide-entry' | overridden | visibility cycling |
-;; | `show-entry' | overridden | no replacement |
;; | `hide-leaves' | overridden | no replacement |
;; | `hide-sublevels' | overridden | no replacement |
;; | `hide-other' | overridden | no replacement |
-;; | `outline-move-subtree-up' | `C-c C-^' | better: org-shiftup |
-;; | `outline-move-subtree-down' | overridden | better: org-shiftdown |
;; Make `C-c C-x' a prefix key
(org-defkey org-mode-map "\C-c\C-x" (make-sparse-keymap))