Hi all, Hi Johannes, for the record, there has been a question regarding this in Emacs.SX as of recent: https://emacs.stackexchange.com/q/47239/18951 Best, Gustavo. On 27/01/2019 15:51, Johannes Altmanninger wrote: > Hi, > > My installation of Emacs bundles Org mode 9.1.9 > and it defines keyboard mapping for completion like this: > > (org-defkey org-mode-map "\M-\t" #'pcomplete) > (org-defkey org-mode-map [?\e (tab)] #'pcomplete) > > Here I can also use C-M-i to call pcomplete. > (Both in windowed and terminal mode). > > > However, I want to use org-plus-contrib from the Org ELPA repository. > which uses a slightly different definition: > > (org-defkey org-mode-map (kbd "M-") #'pcomplete) > (org-defkey org-mode-map (kbd "ESC ") #'pcomplete) > > This does not bind C-M-i which I'd like to use. > Is there any reason for this discrepancy? > > Thank you > Johannes >