From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alan Schmitt Subject: Re: org-mode + icicles, avoid key binding redefinitions? Date: Sat, 18 Jan 2014 22:40:46 +0100 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:46514) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W4deq-0002LU-AR for emacs-orgmode@gnu.org; Sat, 18 Jan 2014 16:42:30 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1W4dek-0001ua-7B for emacs-orgmode@gnu.org; Sat, 18 Jan 2014 16:42:24 -0500 Received: from mail3-relais-sop.national.inria.fr ([192.134.164.104]:22424) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W4dek-0001uN-09 for emacs-orgmode@gnu.org; Sat, 18 Jan 2014 16:42:18 -0500 In-Reply-To: (John Kitchin's message of "Sat, 18 Jan 2014 14:49:39 -0500") 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: John Kitchin Cc: "emacs-orgmode@gnu.org" John Kitchin writes: > Is anyone using org-mode and icicles? How interesting. I also started trying icicle out today. > I am trying it out, and icicles seems to have clobbered a few key > bindings like C-c ' to open source blocks. I'm having the same problem. I think one way to do it is to unbind the key in the icicle-mode-map: --8<---------------cut here---------------start------------->8--- (eval-after-load "icicle-mode" '(define-key icicle-mode-map (kbd "C-c '") nil)) --8<---------------cut here---------------end--------------->8--- The function will still be bound to 'M-s M-s o' so I guess this is fine. I'm having other problem with icicle (I cannot get it to play nice with bbdb). I couldn't find a mailing list to ask questions about it. If someone has a suggestion, I'll gladly hear it. Best, Alan