emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [O] (no subject) How to sort agenda by timestamps (scheduled/deadlin


From: Eric S Fraga
Subject: Re: [O] (no subject) How to sort agenda by timestamps (scheduled/deadline)?
Date: Sat, 2 Feb 2013 11:01:53 +1030
User-agent: Gnus/5.130006 (Ma Gnus v0.6) Emacs/24.3.50 (gnu/linux)

Martin Beck <address@hidden> writes:

> If it is possible to use more than one "agenda" block in the block agenda 
> and turn off the time grid for all but the first, this should do perfectly 
> what
> I need. 

One of my agenda custom views looks like this:

#+begin_src emacs-lisp
("v" "Startup View"
  (
    (todo "INPR" (quote(org-agenda-overriding-header "Currently active tasks: 
")))
    (todo "WAIT" (quote(org-agenda-overriding-header "Tasks waiting on others: 
")))
    (agenda "" ((org-agenda-time-grid nil)
      (org-deadline-warning-days 365)
      (org-agenda-entry-types (quote (:deadline)))
      (org-agenda-skip-entry-if (quote scheduled))
      (org-agenda-ndays 1)
      (org-agenda-overriding-header "Unscheduled upcoming deadlines:")))
    (agenda "" ((org-agenda-ndays 1)
      (org-deadline-warning-days 1)))
    (todo "" (quote(org-agenda-overriding-header "Unscheduled No Deadline TODO: 
"))))
#+end_src

Note the =org-agenda-time-grid nil= setting.

HTH,
eric
-- 
: Eric S Fraga, GnuPG: 0xC89193D8FFFCF67D
: in Emacs 24.3.50.1 and Org release_7.9.3d-898-g005917




reply via email to

[Prev in Thread] Current Thread [Next in Thread]