emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Recommended global keybindings in the guide vs the manual


From: Nick Dokos
Subject: Recommended global keybindings in the guide vs the manual
Date: Fri, 17 Jan 2020 18:12:06 -0500
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux)

org-guide.org:Introduction/Activation says:

--8<---------------cut here---------------start------------->8---
Add the following lines to your Emacs init file.  The last four lines
define /global/ keys for some commands---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)
#+end_src
--8<---------------cut here---------------end--------------->8---

I realize that it says to "choose suitable keys yourself", but
surely, these should be identical to what the full manual recommends?

--8<---------------cut here---------------start------------->8---
#+begin_src emacs-lisp
(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
--8<---------------cut here---------------end--------------->8---

Right?
-- 
Nick

"There are only two hard problems in computer science: cache
invalidation, naming things, and off-by-one errors." -Martin Fowler




reply via email to

[Prev in Thread] Current Thread [Next in Thread]