From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Recommended global keybindings in the guide vs the manual Date: Fri, 17 Jan 2020 18:12:06 -0500 Message-ID: <87mualk795.fsf@alphaville.usersys.redhat.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:33130) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1isamo-0008Qb-4V for emacs-orgmode@gnu.org; Fri, 17 Jan 2020 18:12:19 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1isamn-0004I9-5i for emacs-orgmode@gnu.org; Fri, 17 Jan 2020 18:12:18 -0500 Received: from ciao.gmane.io ([159.69.161.202]:46776) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1isamn-0004ET-03 for emacs-orgmode@gnu.org; Fri, 17 Jan 2020 18:12:17 -0500 Received: from list by ciao.gmane.io with local (Exim 4.92) (envelope-from ) id 1isamh-000K9r-LK for emacs-orgmode@gnu.org; Sat, 18 Jan 2020 00:12:11 +0100 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane-mx.org@gnu.org Sender: "Emacs-orgmode" To: emacs-orgmode@gnu.org 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