Re: [O] Get a list of tasks completed today

2014-02-17 Thread Nick Dokos
Trevor Murphy writes: > ... > One thing I'd like to do is run a function over every item that was > closed this past week. For sake of example, let's say I've added a > property ":mood: 5" to several closed items and I'd like to delete it > (but only from the closed items; I'm not necessarily de

Re: [O] Get a list of tasks completed today

2014-02-17 Thread Trevor Murphy
Boo, reflowed text or some nonsense. Let's see if this works better: (add-to-list 'org-agenda-custom-commands '("." "Closed this week." tags "CLOSED>\"<-1w>\"" ((org-agenda-sorting-strategy '(priority-down) -- Trevor Murphy GnuPG Key: 0x83881C0A

Re: [O] Get a list of tasks completed today

2014-02-17 Thread Sebastien Vauban
"Loris Bennett" wrote: > "Sebastien Vauban" writes: >> "Sebastien Vauban" wrote: >>> To get a list of tasks which I've completed today, I guess we must have: >>> >>> (setq org-log-done t) ; default >>> >>> I mean: I guess it's more dangerous to try and play with the "state >>> changes" informati

Re: [O] Get a list of tasks completed today

2014-02-17 Thread Trevor Murphy
"Loris Bennett" writes: #+begin_src emacs-lisp (add-to-list 'org-agenda-custom-commands '("." "Completed today" ((todo "" ((org-agenda-skip-function '(org-agenda-skip-entry-if 'notregexp

Re: [O] Get a list of tasks completed today

2014-02-17 Thread Loris Bennett
"Sebastien Vauban" writes: > "Sebastien Vauban" wrote: >> To get a list of tasks which I've completed today, I guess we must have: >> >> (setq org-log-done t) ; default >> >> I mean: I guess it's more dangerous to try and play with the "state >> changes" information stored in the LOGBOOK drawer

Re: [O] Get a list of tasks completed today

2014-02-16 Thread Sebastien Vauban
"Sebastien Vauban" wrote: > To get a list of tasks which I've completed today, I guess we must have: > > (setq org-log-done t) ; default > > I mean: I guess it's more dangerous to try and play with the "state > changes" information stored in the LOGBOOK drawer as people can easily > modify them (

[O] Get a list of tasks completed today

2014-02-13 Thread Sebastien Vauban
Hello, To get a list of tasks which I've completed today, I guess we must have: --8<---cut here---start->8--- (setq org-log-done t) ; default --8<---cut here---end--->8--- I mean: I guess it's more dangerous to try and pla