summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2021-07-02 16:01:05 +0200
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2021-07-02 16:01:05 +0200
commitee652a47df80b194c42ae27fff389a7b4debfaf7 (patch)
tree945abb0d0c309af1bc60e5264c696ed66c1cec7c
parent565361eb698b0b39c1d823ad1565f5bd88fa2034 (diff)
downloadorg-mode-ee652a47df80b194c42ae27fff389a7b4debfaf7.tar.gz
org-keys: Remove fancy RET keybindings
There is no such binding as "S-RET", and "ESC ..." is translated to "M-..." in both GUI and TUI. Finally, "M-<return>" is translated to "M-RET" so we shouldn't use the former.
-rw-r--r--lisp/org-keys.el7
1 files changed, 0 insertions, 7 deletions
diff --git a/lisp/org-keys.el b/lisp/org-keys.el
index 4cb03b0..58c3b64 100644
--- a/lisp/org-keys.el
+++ b/lisp/org-keys.el
@@ -454,15 +454,8 @@ COMMANDS is a list of alternating OLDDEF NEWDEF command names."
;;;; RET/<return> key with modifiers
(org-defkey org-mode-map (kbd "S-<return>") #'org-table-copy-down)
-(org-defkey org-mode-map (kbd "S-RET") #'org-table-copy-down)
(org-defkey org-mode-map (kbd "M-S-<return>") #'org-insert-todo-heading)
-(org-defkey org-mode-map (kbd "M-S-RET") #'org-insert-todo-heading)
-(org-defkey org-mode-map (kbd "ESC S-<return>") #'org-insert-todo-heading)
-(org-defkey org-mode-map (kbd "ESC S-RET") #'org-insert-todo-heading)
-(org-defkey org-mode-map (kbd "M-<return>") #'org-meta-return)
(org-defkey org-mode-map (kbd "M-RET") #'org-meta-return)
-(org-defkey org-mode-map (kbd "ESC <return>") #'org-meta-return)
-(org-defkey org-mode-map (kbd "ESC RET") #'org-meta-return)
;;;; Cursor keys with modifiers
(org-defkey org-mode-map (kbd "M-<left>") #'org-metaleft)