[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [O] Color entries according to assigned priority
From: |
Uwe Ziegenhagen |
Subject: |
Re: [O] Color entries according to assigned priority |
Date: |
Thu, 8 May 2014 04:36:37 +0000 (UTC) |
User-agent: |
Loom/3.14 (http://gmane.org/) |
Alexander Baier <lexi.baier <at> gmail.com> writes:
>
> On 2014-05-03 22:07 Uwe Ziegenhagen wrote:
> > I copied and pasted the given code, however I do not see any change. I'll
> > try my luck again tomorrow and will get back to you.
>
> Just to be sure, did you eval the pasted code? And restarting org-mode
> (M-x fundamental-mode M-x org-mode) could be necessary, too?
>
> HTH,
Yes, I did. I just ran some tests. Using only
;; Do not show welcome screen at startup
(setq inhibit-startup-message t)
;; just answer Emacs' question with 'y' or 'n' instead of 'yes'or 'no'
(defalias 'yes-or-no-p 'y-or-n-p)
;; Load org mode
(add-to-list 'load-path "G:/Programme/emacs-24.3/myLisp/org-8.2.4/lisp")
in my .emacs I get
http://uweziegenhagen.de/gmane/gmane1.png
If I use the code from the posting
########################################
;; Do not show welcome screen at startup
(setq inhibit-startup-message t)
;; just answer Emacs' question with 'y' or 'n' instead of 'yes'or 'no'
(defalias 'yes-or-no-p 'y-or-n-p)
;; Load org mode
(add-to-list 'load-path "G:/Programme/emacs-24.3/myLisp/org-8.2.4/lisp")
(font-lock-add-keywords 'org-mode
'(("^.*:write:.*$" . font-lock-keyword-face)))
(setq org-agenda-face-for-tagged-lines
'(("write" . bold)))
(defun org-agenda-fontify-tagged-line ()
"Use `org-agenda-face-for-tagged-lines' to fontify lines with certain tags."
(goto-char (point-min))
(let (tags)
(while (progn (forward-line 1) (not (eobp)))
(if (setq tags (get-text-property (point) 'tags))
(mapcar
(lambda (pair)
(if (member (car pair) tags)
(add-text-properties (point-at-bol) (point-at-eol)
`(face,(cdr pair)))))
org-agenda-face-for-tagged-lines)))))
(add-hook 'org-agenda-finalize-hook 'org-agenda-fontify-tagged-line)
#################################################
I get http://uweziegenhagen.de/gmane/gmane2.png
which is the same.
Uwe