From mboxrd@z Thu Jan 1 00:00:00 1970 From: John Hendy Subject: Export as ODT, as ODT file is opening document automatically Date: Tue, 26 Mar 2013 16:13:38 -0500 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Return-path: Received: from eggs.gnu.org ([208.118.235.92]:44377) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UKbBd-0005kt-AO for emacs-orgmode@gnu.org; Tue, 26 Mar 2013 17:13:42 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UKbBb-0008J4-UO for emacs-orgmode@gnu.org; Tue, 26 Mar 2013 17:13:41 -0400 Received: from mail-la0-x236.google.com ([2a00:1450:4010:c03::236]:63240) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UKbBb-0008Iv-Lo for emacs-orgmode@gnu.org; Tue, 26 Mar 2013 17:13:39 -0400 Received: by mail-la0-f54.google.com with SMTP id gw10so14521176lab.13 for ; Tue, 26 Mar 2013 14:13:38 -0700 (PDT) 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: emacs-orgmode I'm on =release_8.0-pre-181-ge7cfb4= and with =C-e o o=, LibreOffice immediately opens the file. I'd expect this with =C-e o O=, but not with =C-e o o=. I noticed that I have an openwith process running =soffice /path/to/file.odt=... is the exporter somehow triggering openwith to open it even though I haven't said to do so upon export? Here's my settings in .emacs: (openwith-associations (quote (("\\.pdf\\'" "evince" (file)) ("\\.mp3\\'" "vlc" (file)) ("\\.\\(?:mpe?g\\|avi\\|wmv\\|mov\\)\\'" "vlc" ("-idx" file)) ("\\.\\(?:jp?g\\|png\\)\\'" "geeqie" (file)) ("\\.\\(?:odg\\|odt\\|docx\\|doc\\)\\'" "soffice" (file)) ("\\.\\(?:odp\\|ppt\\|pptx\\)\\'" "soffice" (file)) ("\\.\\(?:xls\\|xlsx\\|ods\\)\\'" "soffice" (file))))) John