From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rainer Stengele Subject: agenda view "r" efreshing: how to stick with custom settings Date: Wed, 15 Aug 2007 23:56:30 +0200 Message-ID: References: <46C32DB9.2030701@cc.umanitoba.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1ILQrG-0002bT-NJ for emacs-orgmode@gnu.org; Wed, 15 Aug 2007 17:56:54 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1ILQrF-0002a4-Uy for emacs-orgmode@gnu.org; Wed, 15 Aug 2007 17:56:54 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1ILQrF-0002Zs-Pa for emacs-orgmode@gnu.org; Wed, 15 Aug 2007 17:56:53 -0400 Received: from main.gmane.org ([80.91.229.2] helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1ILQrF-0005D8-8H for emacs-orgmode@gnu.org; Wed, 15 Aug 2007 17:56:53 -0400 Received: from list by ciao.gmane.org with local (Exim 4.43) id 1ILQrA-0000Ub-Vp for emacs-orgmode@gnu.org; Wed, 15 Aug 2007 23:56:49 +0200 Received: from p57af35be.dip0.t-ipconnect.de ([87.175.53.190]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 15 Aug 2007 23:56:48 +0200 Received: from rainer.stengele by p57af35be.dip0.t-ipconnect.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 15 Aug 2007 23:56:48 +0200 In-Reply-To: <46C32DB9.2030701@cc.umanitoba.ca> 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: emacs-orgmode@gnu.org I would like to stick with the settings I configured in my agenda custom views like for example these ones: (setq org-agenda-custom-commands '(("d" agenda "X-Agenda 0 days deadline preview" ((org-deadline-warning-days 0))) ("2" agenda "X-Agenda 2 days deadline preview" ((org-deadline-warning-days 2))) ("3" agenda "X-Agenda 3 days deadline preview" ((org-deadline-warning-days 3))) ("7" agenda "X-Agenda 7 days deadline preview" ((org-deadline-warning-days 7)) nil ("~/org/agenda7.html")) ("8" agenda "X-Agenda 14 days deadline preview" ((org-deadline-warning-days 14)) nil ("~/org/agenda14.html")) )) Entering agenda view with "C-a d" will show no future deadlines or schedules. Now when switching to the org-file for an item with "TAB", editing it, I want to go back to the e+agenda view with "C-x o", press "r" and see my changes but not all the future deadlines/schedules. How could I therefore make the local custom settings "global"/sticky? Maybe a config variable would do the job, allowing to set custom settings globally. rainer