From mboxrd@z Thu Jan 1 00:00:00 1970 From: Johannes Altmanninger Subject: Bind pcomplete to C-M-i Date: Sun, 27 Jan 2019 18:51:08 +0100 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Return-path: Received: from eggs.gnu.org ([209.51.188.92]:53379) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gnoal-00076H-II for emacs-orgmode@gnu.org; Sun, 27 Jan 2019 12:51:36 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gnoaj-0005ua-FO for emacs-orgmode@gnu.org; Sun, 27 Jan 2019 12:51:35 -0500 Received: from mail-vs1-xe33.google.com ([2607:f8b0:4864:20::e33]:40067) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gnoaf-0005r4-DI for emacs-orgmode@gnu.org; Sun, 27 Jan 2019 12:51:30 -0500 Received: by mail-vs1-xe33.google.com with SMTP id z3so8480886vsf.7 for ; Sun, 27 Jan 2019 09:51:20 -0800 (PST) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: "Emacs-orgmode" To: emacs-orgmode@gnu.org 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