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>
This commit is contained in:
Nicolas Goaziou 2019-01-29 10:06:19 +01:00
parent f9a8cccafa
commit 5fe9e6cbea
1 changed files with 2 additions and 0 deletions

View File

@ -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)