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:
parent
f9a8cccafa
commit
5fe9e6cbea
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue