Merge branch 'maint'

This commit is contained in:
Kyle Meyer 2020-01-17 20:57:07 -05:00
commit c9ee3d8a9b
1 changed files with 6 additions and 8 deletions

View File

@ -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.