Re: [Orgmode] org-show-effort ideas

2009-11-03 Thread Adam Spiers
On Tue, Nov 03, 2009 at 07:47:48AM +0100, Carsten Dominik wrote: > On Nov 2, 2009, at 2:49 PM, Adam Spiers wrote: > > >I wanted an easy way to see an effort estimate when not in column > >view, so I wrote this: > > > >(defun org-show-effort () > >"Shows the effort of the entry at the current point

Re: [Orgmode] org-show-effort ideas

2009-11-02 Thread Carsten Dominik
On Nov 2, 2009, at 2:49 PM, Adam Spiers wrote: I wanted an easy way to see an effort estimate when not in column view, so I wrote this: (defun org-show-effort () "Shows the effort of the entry at the current point." (interactive) (let ((effort (org-entry-get (point) org-effort-property))) (me

[Orgmode] org-show-effort ideas

2009-11-02 Thread Adam Spiers
I wanted an easy way to see an effort estimate when not in column view, so I wrote this: (defun org-show-effort () "Shows the effort of the entry at the current point." (interactive) (let ((effort (org-entry-get (point) org-effort-property))) (message (if effort (format "Effort is %s" ef