summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2019-01-29 10:06:19 +0100
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2019-01-29 10:06:19 +0100
commit5fe9e6cbeaea12c020eeb495223ce359825121b8 (patch)
treea985eb5a66467fbe3caf6ce3ebb5e5947cbad4f8
parentf9a8cccafaeacd94a36eacaee35127b749ac13f5 (diff)
downloadorg-mode-5fe9e6cbeaea12c020eeb495223ce359825121b8.tar.gz
Extend pcomplete binding to C-M-i
* lisp/org.el (org-mode-map): Add TAB equivalent to <tab> binding. Reported-by: Johannes Altmanninger <aclopte@gmail.com> <http://lists.gnu.org/r/emacs-orgmode/2019-01/msg00373.html>
-rw-r--r--lisp/org.el2
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/org.el b/lisp/org.el
index 3b6d113..e7bca37 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -18897,7 +18897,9 @@ COMMANDS is a list of alternating OLDDEF NEWDEF command names."
(org-defkey org-mode-map (kbd "<tab>") #'org-cycle)
(org-defkey org-mode-map (kbd "C-<tab>") #'org-force-cycle-archived)
(org-defkey org-mode-map (kbd "M-<tab>") #'pcomplete)
+(org-defkey org-mode-map (kbd "M-TAB") #'pcomplete)
(org-defkey org-mode-map (kbd "ESC <tab>") #'pcomplete)
+(org-defkey org-mode-map (kbd "ESC TAB") #'pcomplete)
(org-defkey org-mode-map (kbd "<S-iso-leftab>") #'org-shifttab)
(org-defkey org-mode-map (kbd "S-<tab>") #'org-shifttab)