0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-09-29 18:00:49 +00:00

org-manual: Fix suggested bindings

* doc/org-manual.org (Activation): Fix and clarify bindings, using
  `kbd' macro.
This commit is contained in:
Nicolas Goaziou 2018-10-01 18:16:46 +02:00
parent 22538490d3
commit 0b98efdcd9

View file

@ -185,9 +185,9 @@ to globally available keys, like the ones reserved for users (see
bindings, please modify the keys to your own liking. bindings, please modify the keys to your own liking.
#+begin_src emacs-lisp #+begin_src emacs-lisp
(global-set-key "\C-cl" 'org-store-link) (global-set-key (kbd "C-c l") 'org-store-link)
(global-set-key "\C-ca" 'org-agenda) (global-set-key (kbd "C-c a") 'org-agenda)
(global-set-key "\C-cc" 'org-capture) (global-set-key (kbd "C-c c") 'org-capture)
#+end_src #+end_src
#+cindex: Org mode, turning on #+cindex: Org mode, turning on