From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marco Wahl Subject: Re: M-S-RET doesn't work anymore? Date: Wed, 23 Jan 2019 21:50:01 +0100 Message-ID: <84va2fhzeu.fsf@gmail.com> References: <87y37bup0p.fsf@norang.ca> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([209.51.188.92]:60073) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gmPTP-0004S9-0L for emacs-orgmode@gnu.org; Wed, 23 Jan 2019 15:50:11 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gmPTM-00013T-Uu for emacs-orgmode@gnu.org; Wed, 23 Jan 2019 15:50:10 -0500 Received: from mail-wr1-x434.google.com ([2a00:1450:4864:20::434]:46870) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gmPTM-00011p-7e for emacs-orgmode@gnu.org; Wed, 23 Jan 2019 15:50:08 -0500 Received: by mail-wr1-x434.google.com with SMTP id l9so4054002wrt.13 for ; Wed, 23 Jan 2019 12:50:05 -0800 (PST) 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.org@gnu.org Sender: "Emacs-orgmode" To: Bernt Hansen , Nicolas Goaziou Cc: emacs-orgmode@gnu.org Hi! > I regularly create checkbox lists on the fly with > > 1. [ ] blah and M-S-RET to create the second entry > > 2. [ ] I can confirm this. > But the checkbox is missing today. Has this functionality changed? > > I am running the latest master from git on windows emacs 25.1 I guess the new behavior is due to commit 8a1957d59201940613ee90be9ed0a49e70131f37. #+begin_src diff -(org-defkey org-mode-map (kbd "S-") #'org-table-copy-down) -(org-defkey org-mode-map (kbd "M-S-") #'org-insert-todo-heading) -(org-defkey org-mode-map (kbd "ESC S-") #'org-insert-todo-heading) +(org-defkey org-mode-map (kbd "S-RET>") #'org-table-copy-down) +(org-defkey org-mode-map (kbd "M-S-RET") #'org-insert-todo-heading) +(org-defkey org-mode-map (kbd "ESC S-RET") #'org-insert-todo-heading) #+end_src I think you could use M-S-C-m with the current code. As a workaround you can evaluate the lines (that were active before the commit) (org-defkey org-mode-map (kbd "S-") #'org-table-copy-down) (org-defkey org-mode-map (kbd "M-S-") #'org-insert-todo-heading) (org-defkey org-mode-map (kbd "ESC S-") #'org-insert-todo-heading) or put them into your init file AFAICS. Is this a reliable fix to add these lines to the source code again? To be honest I don't see clearly. Ciao, Marco