From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: Feature Request: Disable auto-insert-mode exporting Date: Thu, 27 Oct 2011 17:03:55 -0400 Message-ID: <25696.1319749435@alphaville.dokosmarshall.org> References: <4ea9b1b7.d185ec0a.0baf.08ab@mx.google.com> Reply-To: nicholas.dokos@hp.com Return-path: Received: from eggs.gnu.org ([140.186.70.92]:39653) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RJX7H-0008Jv-9q for emacs-orgmode@gnu.org; Thu, 27 Oct 2011 17:04:00 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RJX7G-0000zv-9q for emacs-orgmode@gnu.org; Thu, 27 Oct 2011 17:03:59 -0400 Received: from g5t0007.atlanta.hp.com ([15.192.0.44]:14231) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RJX7G-0000zg-3z for emacs-orgmode@gnu.org; Thu, 27 Oct 2011 17:03:58 -0400 In-Reply-To: Message from Darlan Cavalcante Moreira of "Thu, 27 Oct 2011 16:31:59 -0300." <4ea9b1b7.d185ec0a.0baf.08ab@mx.google.com> 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: Darlan Cavalcante Moreira Cc: nicholas.dokos@hp.com, Orgmode Mailing List Darlan Cavalcante Moreira wrote: > > I consider auto-insert-mode to be a very useful feature in Emacs and it > works great in most situations, except when exporting an org-mode buffer. > > If I export to PDF or HTML, for instance, then org-mode creates a TeX or an > HTML buffer and auto-insert kicks-in in both cases (asking for the title in > the HTML buffer, or the master file in the TeX buffer). Whatever I write > will be overwritten by the org-mode exporter and the file exports just > fine, but this interruption is annoying. > I don't think the master file question comes from auto-insert - I believe it comes from auctex. In particular, I get the question but I don't have auto-insert enabled for latex. > I suppose I could create a function that disable auto-insert-mode, call > org-export and then re-enable auto-insert-mode, but maybe this should be > the default behaviour of org-mode export. Does this make sense? > You can advise org-export: (defadvice org-export (around org-export-no-auto-insert) (let ((auto-insert nil)) ad-do-it)) (ad-activate 'org-export) should do it (untested). Nick