From dcc3a84a989859a4f570f4db08fce5d3632e407c Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Sat, 31 Jul 2021 10:55:01 +0200 Subject: [PATCH] keys: Re-instate some RET bindings MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * lisp/org-keys.el (org-mode-map): Re-instate S-RET and M-S-RET, which are not translated from S- and M-S-, unlike M-/M-RET. This is a followup to ee652a47df80b194c42ae27fff389a7b4debfaf7. Reported-by: Kévin Le Gouguec --- lisp/org-keys.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lisp/org-keys.el b/lisp/org-keys.el index 58c3b64cf..726d54210 100644 --- a/lisp/org-keys.el +++ b/lisp/org-keys.el @@ -454,7 +454,9 @@ COMMANDS is a list of alternating OLDDEF NEWDEF command names." ;;;; RET/ key with modifiers (org-defkey org-mode-map (kbd "S-") #'org-table-copy-down) +(org-defkey org-mode-map (kbd "S-RET") #'org-table-copy-down) (org-defkey org-mode-map (kbd "M-S-") #'org-insert-todo-heading) +(org-defkey org-mode-map (kbd "M-S-RET") #'org-insert-todo-heading) (org-defkey org-mode-map (kbd "M-RET") #'org-meta-return) ;;;; Cursor keys with modifiers