From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bastien Subject: Re: New key binding C-Tab -- how to not use it Date: Sun, 19 Oct 2014 22:20:04 +0200 Message-ID: <87siijzua3.fsf@bzg.ath.cx> References: <87r3y47c82.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:38306) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xfwxc-0005EF-Hh for emacs-orgmode@gnu.org; Sun, 19 Oct 2014 16:20:25 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XfwxT-0004fR-HW for emacs-orgmode@gnu.org; Sun, 19 Oct 2014 16:20:16 -0400 Received: from mail-wg0-x233.google.com ([2a00:1450:400c:c00::233]:43206) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XfwxT-0004dI-Af for emacs-orgmode@gnu.org; Sun, 19 Oct 2014 16:20:07 -0400 Received: by mail-wg0-f51.google.com with SMTP id b13so4090064wgh.10 for ; Sun, 19 Oct 2014 13:20:06 -0700 (PDT) In-Reply-To: <87r3y47c82.fsf@gmail.com> (Thorsten Jolitz's message of "Sun, 19 Oct 2014 09:25:17 +0200") 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-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Thorsten Jolitz Cc: emacs-orgmode@gnu.org Thorsten Jolitz writes: > ,---- > | (org-defkey org-mode-map "\C-TAB" 'undefined) > `---- > > not sure if the TAB is correct here, maybe try , , etc if it > does not work. I think this should be one of these: (org-defkey org-mode-map "\C-\t" 'undefined) (org-defkey org-mode-map [(control tab)] 'undefined) (org-defkey org-mode-map (kbd "C-TAB") 'undefined) You may also want to check `local-unset-key' that you can use within `org-mode-hook'. -- Bastien