From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matthew Sauer Subject: Re: My new favorite custom agenda command Date: Fri, 15 Apr 2011 09:27:55 -0500 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([140.186.70.92]:36462) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QAk08-0008JC-DU for emacs-orgmode@gnu.org; Fri, 15 Apr 2011 10:28:01 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QAk04-00071u-DC for emacs-orgmode@gnu.org; Fri, 15 Apr 2011 10:28:00 -0400 Received: from mail-ew0-f41.google.com ([209.85.215.41]:64456) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QAk04-00071q-6f for emacs-orgmode@gnu.org; Fri, 15 Apr 2011 10:27:56 -0400 Received: by ewy9 with SMTP id 9so868846ewy.0 for ; Fri, 15 Apr 2011 07:27:55 -0700 (PDT) In-Reply-To: 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: Org Mode Mailing List However, now looking at it, maybe my top agenda calendar should skip deadlines or just have todays since I have a larger list below. Hmm, going to have to think about this some more but I am really liking this start. Matt On Fri, Apr 15, 2011 at 8:59 AM, Matthew Sauer wrote: > I have been working on learning and playing with some lisp and looking > through the amazing powerfulness of orgmode. =A0This is my new favorite > agenda command. =A0I use it as the right hand side of my startup buffers > (I have two). =A0On the left I have my refile.org file (the "I am not > sure where I am putting this item but I need a container for it") that > is a temporary storage buffer I need to try to keep empty except for > my refile headlines and a dynamic block showing recently updated > files. =A0On the right is the following calendar, gives me a good > overview. =A0Of course for some users the deadline warning days might > need to be smaller for unscheduled deadlines. > > Thanks for all the help and good ideas I have seen flowing through the > list that has helped me get to where I can start hacking orgmode to be > what I want/need it to be. > > Matt > > ----------cut here----------cut here-------------start-------- > > '(org-agenda-custom-commands > =A0 (quote ( > =A0 =A0 =A0 =A0 =A0 ("s" "Startup View" ( > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0(agenda ""= ;;short calendar > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0'(org-agenda-ndays 2) ;; > Number of Days of Agenda Calendar to Display > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0'(org-deadline-warning-days > 7)) ;; Show all deadlines for next week > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0(agenda ""= =A0;; how many days until an > item is due if I haven't scheduled to work on it > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0((org-agenda-time-grid nil) > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 (org-deadline-warning-days > 365) =A0 =A0 =A0 =A0;; Shows all deadlines for next nnn days > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 (org-agenda-entry-types > '(:deadline)) =A0;; Look just for items if they have a deadline > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 (org-agenda-skip-entry-if > 'scheduled) =A0;; Skips items that are scheduled > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 (org-agenda-ndays 1) ;; Show just today > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 (org-agenda-overriding-header > "Unscheduled upcoming deadlines:") ;;Meaningful name > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 )) > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0(todo "" > '(org-agenda-overriding-header "Unscheduled No Deadline TODO: > "));;TODO items not scheduled nor > deadlined > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0))))) > ----------cut here----------------cut here----------------end--------- >