summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2020-01-17 20:57:07 -0500
committerKyle Meyer <kyle@kyleam.com>2020-01-17 20:57:07 -0500
commitc9ee3d8a9b4f1b61ee5035f25ed3220feb0dabce (patch)
tree1cee85ef43c9f4cdb984022e3d6108d6c02d68ac
parenta632873ad914ef9e1da8591201652b0d76e480dd (diff)
parent36cd249e75b967459fbfe63dc0c5f81bb73d51b7 (diff)
downloadorg-mode-c9ee3d8a9b4f1b61ee5035f25ed3220feb0dabce.tar.gz
Merge branch 'maint'
-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.