Subhan Michael Tindall <subh...@familycareinc.org> writes:

> I have the following custom agenda command
>
> ("Z" "Last Worked skip" ((alltodo "" ((org-agenda-skip-function
>
> (lambda nil (org-agenda-skip-entry-if (quote notregexp) "\\:LastWorked\\:")))
>
>                 (org-agenda-sticky nil)
>
>                 (org-agenda-view-columns-initially t)
>
>                 (org-agenda-sorting-strategy (quote (tsia-down 
> todo-state-down)))))))
>
> Each item worked has a property that is automatically set to the last time it 
> was worked (:LastWorkedJ
>
> As-is, this works OK, and shows all non-closed headlines with a :LastWorked: 
> property
>
> What I’d like to do is limit this to only show say the 10 most recently 
> worked items.
>
> Can’t seem to find a way to do this.
>
> Any ideas? This limit needs to happen after the sort.
>

Perhaps

  (org-agenda-max-entries 10)

does the trick?

Nick


Reply via email to