From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Brand Subject: Re: org-mode keybinding conflicts with user keybinding : C-tab Date: Sun, 26 Dec 2010 22:22:14 +0100 Message-ID: References: <20101226172224.1c8b7c64@eana.kheb.homelinux.org> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Return-path: Received: from [140.186.70.92] (port=39281 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PWy2i-0002aU-OM for emacs-orgmode@gnu.org; Sun, 26 Dec 2010 16:22:17 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PWy2h-0007F3-TU for emacs-orgmode@gnu.org; Sun, 26 Dec 2010 16:22:16 -0500 Received: from mail-iw0-f169.google.com ([209.85.214.169]:57189) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PWy2h-0007Ev-Q1 for emacs-orgmode@gnu.org; Sun, 26 Dec 2010 16:22:15 -0500 Received: by iwn40 with SMTP id 40so9134612iwn.0 for ; Sun, 26 Dec 2010 13:22:14 -0800 (PST) In-Reply-To: <20101226172224.1c8b7c64@eana.kheb.homelinux.org> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Michel Briand Cc: emacs-orgmode@gnu.org Hi Michel Briand On Sun, Dec 26, 2010 at 17:22, Michel Briand wrote: > for many years I'm using C-tab bounded to 'other-window. > > Org-mode binds this key (control tab), however I would like to keep my > own binding for this key. > > I've investigated in "Org Disputed Keys", enabling > org-replace-disputed-keys and adding : > > ([(control tab)] . [(meta control tab)]) This is most likely not the smartest solution but at least I expect it to do what you want: (org-defkey org-mode-map (kbd "") 'other-window) (org-defkey org-mode-map (kbd "") 'org-force-cycle-archived) Michael Brand