unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
From: Alexander Botero-Lowry <alex.boterolowry@gmail.com>
To: "Aneesh Kumar K.V" <aneesh.kumar@linux.vnet.ibm.com>,
	notmuch@notmuchmail.org
Subject: Re: [PATCH -v4] notmuch.el: Add face support to search and show mode
Date: Tue, 24 Nov 2009 21:24:07 -0800	[thread overview]
Message-ID: <86fx83qirs.fsf@fortitudo.i-did-not-set--mail-host-address--so-tickle-me> (raw)
In-Reply-To: <1259125080-18708-1-git-send-email-aneesh.kumar@linux.vnet.ibm.com>

On Wed, 25 Nov 2009 10:28:00 +0530, "Aneesh Kumar K.V" <aneesh.kumar@linux.vnet.ibm.com> wrote:
> This add two faces, notmuch-show-subject-face and
> notmuch-tag-face. The first face is used to show the subject
> line in the notmuch-show-mode and the second one to show tags
> in the notmuch-search-mode.
> 
First, I definetly think fontification is the way to go instead of
the adhoc/crappy way that cworth and I have been doing this in the
past.

[snip]

> +(defvar notmuch-show-font-lock-keywords
> +  (list ;; header in font-lock-type-face
> +   (list "\\(Subject:.*$\\)"
> +	 '(1  'notmuch-show-subject-face)))
> +  "Additonal expression to hightlight in notmuch-show-mode")
> +
So what happens if I have Subject: xxxx in my message? We already ran
into a problem where a patch sent the list that included notmuch control
character caused it to go into an infinite loop, I'd prefer our
fontification code be a bit more resilient. At the very least this
should use the font-lock syntax tables stuff to only do header
fontification when inside the header block. This would probably require
that fontification occur before the message is post-processed by 
notmuch-show to remove the section markers etc.

Also +1 for more subduded colors than red. :) Possibly consider copying
the message-mode colors, so that there is a bit of consistency between
sending and viewing mail? Might even be able to steal the message-mode
faces by importing their symbols.

[snip]

>  (defun notmuch-search-mode ()
>    "Major mode for searching mail with notmuch.
> @@ -865,7 +888,18 @@ global search.
>    (setq truncate-lines t)
>    (setq major-mode 'notmuch-search-mode
>  	mode-name "notmuch-search")
> -  (setq buffer-read-only t))
> +  (setq buffer-read-only t)
> +  (if (not notmuch-tag-face-alist)
> +      (add-to-list 'notmuch-search-font-lock-keywords (list
> +		"\\(([^)]*)$\\)" '(1  'notmuch-tag-face)))
This way of detecting the tags seems ok, but I think it would be nicer
if it could be done even more deterministically. :) One idea that be
neat is to have a --format=sexp for notmuch search, which exports sexps
(probably alists, but could be some other format) for the search results
that can just be eval'd and processed in a cleaner way (and would also
make for nicer APIs in emacs for querying notmuch itself). Actually I
really like the idea of a sexp output mode for show too, instead of the
markers.... *plots*

> +    (progn
> +  (setq notmuch-search-tags (mapcar 'car notmuch-tag-face-alist))
> +  (loop for notmuch-search-tag  in notmuch-search-tags
> +    do (add-to-list 'notmuch-search-font-lock-keywords (list
> +				(concat "\\(" notmuch-search-tag "\\)")
> +		    `(1  ,(cdr (assoc notmuch-search-tag notmuch-tag-face-alist))))))))
> +  (set (make-local-variable 'font-lock-defaults)
> +         '(notmuch-search-font-lock-keywords t)))
>  
I don't really see the point of fontifying all tags the same way if no
tag-faces have been set, especially if none of the rest of the search
results are fontified.

Alex

  reply	other threads:[~2009-11-25  5:24 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-11-25  4:58 [PATCH -v4] notmuch.el: Add face support to search and show mode Aneesh Kumar K.V
2009-11-25  5:24 ` Alexander Botero-Lowry [this message]
2009-11-25 14:33   ` Jeffrey Ollie
2009-11-25 15:32     ` Bart Trojanowski
2009-11-25 15:47   ` Aneesh Kumar K. V
2009-11-27  8:42 ` [PATCH -v5] notmuch.el: Add face support to search mode Aneesh Kumar K.V
2009-11-27  8:42   ` [PATCH -v5] notmuch.el: Use message-mode font-face to highlight mail headers Aneesh Kumar K.V
2009-11-27 10:14     ` [PATCH -v6] " Aneesh Kumar K.V
2009-11-28  5:02       ` Carl Worth
2009-11-28  6:07   ` [PATCH -v6] notmuch.el: Add face support to search mode Aneesh Kumar K.V
2009-11-28  6:56     ` Carl Worth

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://notmuchmail.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=86fx83qirs.fsf@fortitudo.i-did-not-set--mail-host-address--so-tickle-me \
    --to=alex.boterolowry@gmail.com \
    --cc=aneesh.kumar@linux.vnet.ibm.com \
    --cc=notmuch@notmuchmail.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://yhetil.org/notmuch.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).