emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* No Brackets in TODO keywords?
@ 2011-06-29  9:19 Marcus Klemm
  2011-06-29 11:07 ` Bastien
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Marcus Klemm @ 2011-06-29  9:19 UTC (permalink / raw)
  To: emacs-orgmode

Hello List,

For visual reasons I'd like to have TODO keywords in brackets, like
[TODO], [DONE] etc. Unfortunately, orgmode does not allow me to do
that. I can define them, I can select them with C-c C-t, but in the
actual .org file they are not recognized as TODO keywords. Or, at
least, they don't get drawn using the org-todo face.

Ciao, Marcus

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

* Re: No Brackets in TODO keywords?
  2011-06-29  9:19 No Brackets in TODO keywords? Marcus Klemm
@ 2011-06-29 11:07 ` Bastien
  2011-06-29 12:30 ` Visual distinctiveness of todo states (was: No Brackets in TODO keywords?) Memnon Anon
  2011-06-29 12:39 ` No Brackets in TODO keywords? Sebastien Vauban
  2 siblings, 0 replies; 5+ messages in thread
From: Bastien @ 2011-06-29 11:07 UTC (permalink / raw)
  To: Marcus Klemm; +Cc: emacs-orgmode

Hi Marcus,

Marcus Klemm <marcus.klemm@googlemail.com> writes:

> For visual reasons I'd like to have TODO keywords in brackets, like
> [TODO], [DONE] etc. Unfortunately, orgmode does not allow me to do
> that. I can define them, I can select them with C-c C-t, but in the
> actual .org file they are not recognized as TODO keywords. Or, at
> least, they don't get drawn using the org-todo face.

I'm not in favor of allowing square brackets for TODO keywords, I find
the limitations for the TODO keywords really acceptable.

So unless many people are asking for this, I will not implement it.

-- 
 Bastien

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

* Visual distinctiveness of todo states (was: No Brackets in TODO keywords?)
  2011-06-29  9:19 No Brackets in TODO keywords? Marcus Klemm
  2011-06-29 11:07 ` Bastien
@ 2011-06-29 12:30 ` Memnon Anon
  2011-06-29 14:38   ` Stormking
  2011-06-29 12:39 ` No Brackets in TODO keywords? Sebastien Vauban
  2 siblings, 1 reply; 5+ messages in thread
From: Memnon Anon @ 2011-06-29 12:30 UTC (permalink / raw)
  To: emacs-orgmode

Hi Marcus,

Marcus Klemm <marcus.klemm@googlemail.com> writes:

> For visual reasons I'd like to have TODO keywords in brackets, like
> [TODO], [DONE] etc. 

not sure about the brackets, but to add some visual distinctiveness, I
use this:

(setq org-todo-keyword-faces 
 '(("PROJ" :background "blue" :weight bold :box (:line-width 2 :style released-button))
   ("TODO" :background "red1" :weight bold :box (:line-width 2 :style released-button))
   ("NEXT" :background "red1" :weight bold :box (:line-width 2 :style released-button))
   ("STRT" :background "orange" :weight bold :box (:line-width 2 :style released-button))
   ("WAIT" :background "yellow" :weight bold :box (:line-width 2 :style released-button))
   ("APPT" :background "red1" :weight bold :box (:line-width 2 :style released-button))
   ("DONE" :background "forest green" :weight bold :box (:line-width 2 :style released-button))
   ("CNCL" :background "lime green" :weight bold :box (:line-width 2 :style released-button))
   ))

Great on X, less so on tty.
Give it a try ;).

hth
Memnon

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

* Re: No Brackets in TODO keywords?
  2011-06-29  9:19 No Brackets in TODO keywords? Marcus Klemm
  2011-06-29 11:07 ` Bastien
  2011-06-29 12:30 ` Visual distinctiveness of todo states (was: No Brackets in TODO keywords?) Memnon Anon
@ 2011-06-29 12:39 ` Sebastien Vauban
  2 siblings, 0 replies; 5+ messages in thread
From: Sebastien Vauban @ 2011-06-29 12:39 UTC (permalink / raw)
  To: emacs-orgmode-mXXj517/zsQ

Hi Marcus,

Marcus Klemm wrote:
> For visual reasons I'd like to have TODO keywords in brackets, like [TODO],
> [DONE] etc. Unfortunately, orgmode does not allow me to do that.

You can have approaching effects using boxes to surround the TODO keywords.
For example:

--8<---------------cut here---------------start------------->8---
(org-todo ((t (:weight bold :box (:line-width 1 :color "red3") :foreground "white" :background "#FF5555"))))
--8<---------------cut here---------------end--------------->8---

in my color theme Leuven (see
http://orgmode.org/worg/color-themes/color-theme-leuven.el).

Best regards,
  Seb

-- 
Sebastien Vauban

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

* Re: Visual distinctiveness of todo states (was: No Brackets in TODO keywords?)
  2011-06-29 12:30 ` Visual distinctiveness of todo states (was: No Brackets in TODO keywords?) Memnon Anon
@ 2011-06-29 14:38   ` Stormking
  0 siblings, 0 replies; 5+ messages in thread
From: Stormking @ 2011-06-29 14:38 UTC (permalink / raw)
  To: emacs-orgmode

Memnon Anon <gegendosenfleisch <at> googlemail.com> writes:

> 
> Hi Marcus,
> 
> Marcus Klemm <marcus.klemm <at> googlemail.com> writes:
> 
> > For visual reasons I'd like to have TODO keywords in brackets, like
> > [TODO], [DONE] etc. 
> 
> not sure about the brackets, but to add some visual distinctiveness, I
> use this:
> [...]
> Give it a try ;).

I experimented a lot with background colors and boxes (although the
pseudo-3D is so 90s) and came to the conclusion, that a combination
of brackets and a colorful background looks best.

But it's only a cosmetic issue, if allowing square brackets is too
much work, so be it.

Ciao, Marcus

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

end of thread, other threads:[~2011-06-29 14:39 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-06-29  9:19 No Brackets in TODO keywords? Marcus Klemm
2011-06-29 11:07 ` Bastien
2011-06-29 12:30 ` Visual distinctiveness of todo states (was: No Brackets in TODO keywords?) Memnon Anon
2011-06-29 14:38   ` Stormking
2011-06-29 12:39 ` No Brackets in TODO keywords? Sebastien Vauban

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).