From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ivan Andrus Subject: Re: tables once again Date: Wed, 3 Oct 2012 09:31:29 +0200 Message-ID: <7955EEE5-5DE8-4853-B6C4-880C4B64F8AE@gmail.com> References: Mime-Version: 1.0 (Apple Message framework v1085) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([208.118.235.92]:60893) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TJJQb-0005VK-Ae for emacs-orgmode@gnu.org; Wed, 03 Oct 2012 03:31:37 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TJJQa-0007a1-1Q for emacs-orgmode@gnu.org; Wed, 03 Oct 2012 03:31:33 -0400 Received: from mail-bk0-f41.google.com ([209.85.214.41]:42484) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TJJQZ-0007ZP-Py for emacs-orgmode@gnu.org; Wed, 03 Oct 2012 03:31:31 -0400 Received: by bkcjm1 with SMTP id jm1so5514586bkc.0 for ; Wed, 03 Oct 2012 00:31:30 -0700 (PDT) In-Reply-To: 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: Mode Org Oops, forgot to send it to the list. On Oct 3, 2012, at 12:59 AM, Neuwirth Erich wrote: > Here is my example (slightly modified) again, > I still cannot get it to work the way I want it: >=20 >=20 > In my .emacs I have (among other things) >=20 > (require 'org-install) > (require 'org-e-latex) > (require 'org-e-html) > ;;(require 'org-e-ascii) >=20 > ;; using the new exporter > (global-set-key (kbd "C-c C-e") 'org-export-dispatch) >=20 >=20 > Doing C-c C-e still gives me the old dispatcher, not the new one. > M-x org-export-dispatch > does give me the new dispatcher. >=20 > How can I bind the new dispatcher to C-c C-e? I think the issue is that you are binding it to a global key, but the = org-mode keymap is overriding it in an org-mode buffer. So try (define-key org-mode-map (kbd "C-c C-e") 'org-export-dispatch) and see if that fixes it. You can always try C-h b to see what bindings = are in place and which keymaps they come from. -Ivan