From mboxrd@z Thu Jan 1 00:00:00 1970 From: Kyle Meyer Subject: Re: Recommended global keybindings in the guide vs the manual Date: Sat, 18 Jan 2020 02:05:02 +0000 Message-ID: <87eevxtt81.fsf@kyleam.com> References: <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]:44573) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1isdU5-00016z-Rs for emacs-orgmode@gnu.org; Fri, 17 Jan 2020 21:05:10 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1isdU3-0005xe-6a for emacs-orgmode@gnu.org; Fri, 17 Jan 2020 21:05:09 -0500 Received: from pb-smtp1.pobox.com ([64.147.108.70]:54938) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1isdU2-0005qm-St for emacs-orgmode@gnu.org; Fri, 17 Jan 2020 21:05:07 -0500 In-Reply-To: <87mualk795.fsf@alphaville.usersys.redhat.com> 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: Nick Dokos , emacs-orgmode@gnu.org Nick Dokos writes: > 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 was surprised to see the ones above because they're overriding some pretty central Emacs bindings. It looks like the "-c " in the middle was unintentionally dropped in the guide's .texi to .org conversion (1a678f184). > I realize that it says to "choose suitable keys yourself", but > surely, these should be identical to what the full manual recommends? I've pushed 36cd249e7, which brings the guide's recommneded bindings in agreement with the manual's. Thanks for reporting.