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: > > > In my .emacs I have (among other things) > > (require 'org-install) > (require 'org-e-latex) > (require 'org-e-html) > ;;(require 'org-e-ascii) > > ;; using the new exporter > (global-set-key (kbd "C-c C-e") 'org-export-dispatch) > > > 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. > > 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