From mboxrd@z Thu Jan 1 00:00:00 1970 From: bebop52 Subject: Re: Error in pre-command-hook Date: Wed, 15 Dec 2010 20:57:39 +0100 Message-ID: <87ei9ilsgc.fsf@googlemail.com> References: <87y6892qt9.wl%dmaus@ictsoc.de> <86oc932988.fsf@googlemail.com> <86ei9nqrsf.fsf@googlemail.com> <86y67rerq8.fsf@googlemail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from [140.186.70.92] (port=43515 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PSxU4-0002yv-Iv for emacs-orgmode@gnu.org; Wed, 15 Dec 2010 14:57:58 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PSxU3-0005H6-CQ for emacs-orgmode@gnu.org; Wed, 15 Dec 2010 14:57:56 -0500 Received: from lo.gmane.org ([80.91.229.12]:48511) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PSxU3-0005H0-5f for emacs-orgmode@gnu.org; Wed, 15 Dec 2010 14:57:55 -0500 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1PSxU1-0001kv-OH for emacs-orgmode@gnu.org; Wed, 15 Dec 2010 20:57:53 +0100 Received: from e178120092.adsl.alicedsl.de ([85.178.120.92]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 15 Dec 2010 20:57:53 +0100 Received: from gruenderteam.berlin by e178120092.adsl.alicedsl.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 15 Dec 2010 20:57:53 +0100 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: emacs-orgmode@gnu.org Thorsten writes: > I wouls like to find the definition of the C-c . and C-u-c . key > strokes. I did a multi-isearch in all .el files in the org directory - > the only hit was in a comment in org.el. Where are these keys defined? Finally I found the culprit: ;; Enable EDE (Project Management) features (global-ede-mode 1) in my .emacs enables EDE project-management in org-buffers too, and EDE has many keybindings that start with C-c . and then one additional letter, shadowing the org-keybindings. in my autopair.el configurations I have the following: (autopair-global-mode) (add-hook 'lisp-mode-hook #'(lambda () (setq autopair-dont-activate t))) I don't find an ede-mode-hook or a variable ede-dont-activate. Is there a generic way to disable global-ede-mode for org buffers? cheers Thorsten