From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matt Lundin Subject: Re: preventing automatic rebuild of agenda on refiling? Date: Tue, 15 Jun 2010 12:59:04 -0400 Message-ID: <871vc8fd0n.fsf@fastmail.fm> References: <87zkyweeo0.wl%dmaus@ictsoc.de> <4D0065BA-8C5E-45ED-B58F-04988802800A@gilbert.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from [140.186.70.92] (port=46841 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OOZSg-0003wG-8X for emacs-orgmode@gnu.org; Tue, 15 Jun 2010 12:58:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OOZSe-0004vA-R8 for emacs-orgmode@gnu.org; Tue, 15 Jun 2010 12:58:06 -0400 Received: from out1.smtp.messagingengine.com ([66.111.4.25]:58423) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OOZSe-0004v0-O4 for emacs-orgmode@gnu.org; Tue, 15 Jun 2010 12:58:04 -0400 In-Reply-To: <4D0065BA-8C5E-45ED-B58F-04988802800A@gilbert.org> (Michael Gilbert's message of "Tue, 15 Jun 2010 09:08:46 -0700") 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: Michael Gilbert Cc: emacs-orgmode Mailinglist Michael Gilbert writes: >>> I may have missed when this happened or if it's been discussed >>> already, but I'm noticing that recent Org-mode automatically rebuilds >>> the agenda each time I refile a task. This can dramatically slow down >>> the process of refiling a lot of items. Is there a setting to change >>> this? >> >> As far as I am aware of: No, you currently cannot disable it for a >> single refile operation. But, if you refile a lot of items you might >> try Agenda's bulk action: >> >> http://orgmode.org/manual/Agenda-commands.html >> Bulk actions actually do not rebuld the agenda. > > But if I'm not mistaken, they involve refiling all the marked items to > the same destination. That hasn't been my workflow at all. > > This is a frustrating change. I guess my option now is to jump to the > item in question, refile it, then jump back. But given that in my > current workflow I refile scores of items during my daily prep... Ugh. > I'm sure there was a good reason for the change, but it just doesn't > suit how I've come to use Org-mode. > > Anyway, if there are any other ideas out there other than waiting for > the roundtrip of the rebuild or jumping back and forth to the source > files, I would be interested in hearing them! If you give a triple prefix argument to org-agenda-refile, the agenda will not be rebuilt. If you'd like this as the default behavior, you can bind it to a key (or change the original binding): (define-key org-agenda-mode-map "\C-c\C-w" (lambda () (interactive) (org-agenda-refile nil nil t))) Best, Matt