emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* Possible to collapse State List by default?
@ 2013-03-20  8:50 Martin Butz
  2013-03-20 13:58 ` Bastien
  0 siblings, 1 reply; 5+ messages in thread
From: Martin Butz @ 2013-03-20  8:50 UTC (permalink / raw)
  To: Orgmode Mailing List

Hi,

I wonder if it is possible to collapse the list of state changes below 
"SCHEDULED" by default; as I have lots of tasks which I'll be working on 
several days and use to clock in to track the time I have also lots of 
entries like the following example.

SCHEDULED: <2013-01-30 Mi>
- State "WAITING"    from "STARTED"    [2013-03-13 Mi 15:12]
- State "STARTED"    from "STARTED"    [2013-03-13 Mi 11:01]
- State "WAITING"    from "STARTED"    [2013-03-13 Mi 10:42]
- State "STARTED"    from "STARTED"    [2013-03-13 Mi 10:25]
- State "WAITING"    from "STARTED"    [2013-03-13 Mi 10:11]
- State "STARTED"    from "STARTED"    [2013-03-13 Mi 10:06]
- State "WAITING"    from "STARTED"    [2013-03-12 Di 19:10]
- State "STARTED"    from "STARTED"    [2013-03-12 Di 15:01]
- State "WAITING"    from "STARTED"    [2013-03-12 Di 13:48]
- State "STARTED"    from "STARTED"    [2013-03-12 Di 10:33]
...

It would be nice if I had something like:

SCHEDULED: <2013-01-30 Mi>...

similar to:

:LOGBOOK:...

I know, the list is not contained within a drawer but may someone can 
point to a solution.

Thanks
Martin

-- 
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
| G. Martin Butz, mb@mkblog.org, 0421 98749324, www.mkblog.org |
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Possible to collapse State List by default?
  2013-03-20  8:50 Possible to collapse State List by default? Martin Butz
@ 2013-03-20 13:58 ` Bastien
  2013-03-20 14:26   ` Sebastien Vauban
  2013-03-20 14:42   ` Martin Butz
  0 siblings, 2 replies; 5+ messages in thread
From: Bastien @ 2013-03-20 13:58 UTC (permalink / raw)
  To: mb; +Cc: Orgmode Mailing List

Hi Martin,

Martin Butz <mb@mkblog.org> writes:

> I wonder if it is possible to collapse the list of state changes below
> "SCHEDULED" by default; as I have lots of tasks which I'll be working on
> several days and use to clock in to track the time I have also lots of
> entries like the following example.

(setq org-log-into-drawer t)

or 

(setq org-log-into-drawer "LOGBOOK")

Both are equivalent.

You can also use this startup option in an Org file:

  #+STARTUP: logdrawer

This is a FAQ, perhaps "LOGBOOK" is a better default value for
`org-log-into-drawer'.

What do you all think?

-- 
 Bastien

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Possible to collapse State List by default?
  2013-03-20 13:58 ` Bastien
@ 2013-03-20 14:26   ` Sebastien Vauban
  2013-03-20 14:35     ` Bastien
  2013-03-20 14:42   ` Martin Butz
  1 sibling, 1 reply; 5+ messages in thread
From: Sebastien Vauban @ 2013-03-20 14:26 UTC (permalink / raw)
  To: emacs-orgmode-mXXj517/zsQ

Hi Bastien,

Bastien wrote:
> Martin Butz <mb-Z7eu5UmMm1Idnm+yROfE0A@public.gmane.org> writes:
>
>> I wonder if it is possible to collapse the list of state changes below
>> "SCHEDULED" by default; as I have lots of tasks which I'll be working on
>> several days and use to clock in to track the time I have also lots of
>> entries like the following example.
>
> (setq org-log-into-drawer t)

I definitely think that this should be made the default.

> or
>
> (setq org-log-into-drawer "LOGBOOK")
>
> Both are equivalent.
>
> You can also use this startup option in an Org file:
>
>   #+STARTUP: logdrawer
>
> This is a FAQ, perhaps "LOGBOOK" is a better default value for
> `org-log-into-drawer'.
>
> What do you all think?

You mean:

    #+STARTUP: logbook

?

Best regards,
  Seb

-- 
Sebastien Vauban

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Possible to collapse State List by default?
  2013-03-20 14:26   ` Sebastien Vauban
@ 2013-03-20 14:35     ` Bastien
  0 siblings, 0 replies; 5+ messages in thread
From: Bastien @ 2013-03-20 14:35 UTC (permalink / raw)
  To: Sebastien Vauban; +Cc: public-emacs-orgmode-mXXj517/zsQ



"Sebastien Vauban"
<wxhgmqzgwmuf-geNee64TY+gS+FvcfC7Uqw@public.gmane.org> writes:

>> (setq org-log-into-drawer t)
>
> I definitely think that this should be made the default.

Me too.  Let's wait for other votes/arguments.

> You mean:
>
>     #+STARTUP: logbook

No, I mean #+STARTUP: logdrawer

-- 
 Bastien

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Possible to collapse State List by default?
  2013-03-20 13:58 ` Bastien
  2013-03-20 14:26   ` Sebastien Vauban
@ 2013-03-20 14:42   ` Martin Butz
  1 sibling, 0 replies; 5+ messages in thread
From: Martin Butz @ 2013-03-20 14:42 UTC (permalink / raw)
  To: Bastien; +Cc: Orgmode Mailing List

Hi Bastian,

great! Thanks a lot.

Best
Martin

Am 20.03.2013 14:58, schrieb Bastien:
> Hi Martin,
>
> Martin Butz <mb@mkblog.org> writes:
>
>> I wonder if it is possible to collapse the list of state changes below
>> "SCHEDULED" by default; as I have lots of tasks which I'll be working on
>> several days and use to clock in to track the time I have also lots of
>> entries like the following example.
>
> (setq org-log-into-drawer t)
>
> or
>
> (setq org-log-into-drawer "LOGBOOK")
>
> Both are equivalent.
>
> You can also use this startup option in an Org file:
>
>    #+STARTUP: logdrawer
>
> This is a FAQ, perhaps "LOGBOOK" is a better default value for
> `org-log-into-drawer'.
>
> What do you all think?
>


-- 
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
| G. Martin Butz, mb@mkblog.org, 0421 98749324, www.mkblog.org |
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2013-03-20 14:42 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-03-20  8:50 Possible to collapse State List by default? Martin Butz
2013-03-20 13:58 ` Bastien
2013-03-20 14:26   ` Sebastien Vauban
2013-03-20 14:35     ` Bastien
2013-03-20 14:42   ` Martin Butz

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).