From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bastien Subject: Re: Keybinding in org-mode Date: Fri, 24 Aug 2012 13:48:36 +0200 Message-ID: <87ipc85x4b.fsf@altern.org> References: <5037691B.9040400@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([208.118.235.92]:60308) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T4sNA-0002d3-C2 for emacs-orgmode@gnu.org; Fri, 24 Aug 2012 07:48:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1T4sN9-00039v-BJ for emacs-orgmode@gnu.org; Fri, 24 Aug 2012 07:48:20 -0400 Received: from mail-we0-f169.google.com ([74.125.82.169]:37359) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T4sN9-00039F-4m for emacs-orgmode@gnu.org; Fri, 24 Aug 2012 07:48:19 -0400 Received: by mail-we0-f169.google.com with SMTP id s10so1078680wey.0 for ; Fri, 24 Aug 2012 04:48:18 -0700 (PDT) In-Reply-To: <5037691B.9040400@gmail.com> (Rainer M. Krug's message of "Fri, 24 Aug 2012 13:44:27 +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: Rainer@krugs.de Cc: emacs-orgmode Rainer M Krug writes: > Following an earlier discussion, I would like to bind org-babel-remove-result to a key in org-mode > to C-c x - but what is the best way to do this? Once Org is loaded (so that `org-mode-map' is defined): (define-key org-mode-map "\C-cx-" 'org-babel-remove-result) HTH, -- Bastien