summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2020-01-17 20:55:47 -0500
committerKyle Meyer <kyle@kyleam.com>2020-01-17 20:55:47 -0500
commit36cd249e75b967459fbfe63dc0c5f81bb73d51b7 (patch)
treefc7e78c93aecc2dfb1203fd49b97e7c8fec1cd28
parent2931bef9e7d7fe8d3f9ae96cb3b8e5543489b878 (diff)
downloadorg-mode-36cd249e75b967459fbfe63dc0c5f81bb73d51b7.tar.gz
guide: Match recommended global keybindings to manual's
* doc/org-guide.org (Activation): Match recommended global keybindings to those in the manual. In the guide's .texi to .org conversion in 1a678f184 (Generate compact guide from an Org file, 2019-03-19), the leading "C-c"s of the bindings were lost. Restore them. Also, drop org-switchb, which was pruned from the manual's suggested bindings in d03515590, and tweak the surrounding text more closely match the manual's. Reported-by: Nick Dokos <ndokos@gmail.com>
-rw-r--r--doc/org-guide.org14
1 files changed, 6 insertions, 8 deletions
diff --git a/doc/org-guide.org b/doc/org-guide.org
index 93da830..762137a 100644
--- a/doc/org-guide.org
+++ b/doc/org-guide.org
@@ -72,16 +72,14 @@ the following command to generate autoload information.
:UNNUMBERED: notoc
:END:
-Add the following lines to your Emacs init file. The last four lines
-define /global/ keys for some commands---please choose suitable keys
-yourself.
+Add the following lines to your Emacs init file to define /global/
+keys for three commands that are useful in any Emacs buffer, not just
+Org buffers. Please choose suitable keys yourself.
#+begin_src emacs-lisp
-;; The following lines are always needed. Choose your own keys.
-(global-set-key (kbd "C-l") 'org-store-link)
-(global-set-key (kbd "C-a") 'org-agenda)
-(global-set-key (kbd "C-c") 'org-capture)
-(global-set-key (kbd "C-b") 'org-switchb)
+(global-set-key (kbd "C-c l") 'org-store-link)
+(global-set-key (kbd "C-c a") 'org-agenda)
+(global-set-key (kbd "C-c c") 'org-capture)
#+end_src
Files with extension =.org= will be put into Org mode automatically.