From mboxrd@z Thu Jan 1 00:00:00 1970 From: Abdo Haji-Ali Subject: Highlight text in org-agenda-prefix-format Date: Fri, 12 Apr 2019 17:53:16 +0100 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Return-path: Received: from eggs.gnu.org ([209.51.188.92]:54048) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hEzRA-0000QN-4A for emacs-orgmode@gnu.org; Fri, 12 Apr 2019 12:54:00 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hEzR9-00052w-7Q for emacs-orgmode@gnu.org; Fri, 12 Apr 2019 12:54:00 -0400 Received: from mail-wm1-x335.google.com ([2a00:1450:4864:20::335]:36912) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hEzR7-0004m2-8w for emacs-orgmode@gnu.org; Fri, 12 Apr 2019 12:53:59 -0400 Received: by mail-wm1-x335.google.com with SMTP id v14so11815913wmf.2 for ; Fri, 12 Apr 2019 09:53:54 -0700 (PDT) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: "Emacs-orgmode" To: emacs-orgmode@gnu.org I want to highlight certain text in my todo list in org-agenda. I thought I could do something like this (defun my-func (propertize "texty" 'face 'org-warning)) (setq org-agenda-prefix-format '((todo . "%(my-func) "))) But the text appears without any formatting. Is there a reason for this? Is there another way to highlight text in the todo-list in org agenda?