emacs: show: mark tags changed since buffer loaded

This allows (and requires) the original-tags to be passed along with
the current-tags to be passed to notmuch-tag-format-tags. This allows
the tag formatting to show added and deleted tags.By default a removed
tag is displayed with strike-through in red (if strike-through is not
available, eg on a terminal, inverse video is used instead) and an
added tag is displayed underlined in green.

If the caller does not wish to use the new feature it can pass
current-tags for both arguments and, at this point, we do exactly that
in the three callers of this function.

Note, we cannot tidily allow original-tags to be optional because we would
need to distinguish nil meaning "we are not specifying original-tags"
from nil meaning there were no original-tags (an empty list).

We use this in subsequent patches to make it clear when a message was
unread when you first loaded a show buffer (previously the unread tag
could be removed before a user realised that it had been unread).

The code adds into the existing tag formatting code. The user can
specify exactly how a tag should be displayed normally, when deleted,
or when added.

Since the formatting code matches regexps a user can match all deleted
tags with a ".*" in notmuch-tag-deleted-formats.  For example setting
notmuch-tag-deleted-formats to '((".*" nil)) tells notmuch not to show
deleted tags at all.

All the variables are customizable; however, more complicated cases
like changing the face depending on the type of display will require
custom lisp.

Currently this overrides notmuch-tag-deleted-formats for the tests
setting it to '((".*" nil)) so that they get removed from the display
and, thus, all tests still pass.
This commit is contained in:
Mark Walters 2014-03-22 11:51:09 +00:00 committed by David Bremner
parent d5acfdda5f
commit 941e172724
5 changed files with 67 additions and 36 deletions

View file

@ -344,7 +344,7 @@ operation on the contents of the current buffer."
(if (re-search-forward "(\\([^()]*\\))$" (line-end-position) t) (if (re-search-forward "(\\([^()]*\\))$" (line-end-position) t)
(let ((inhibit-read-only t)) (let ((inhibit-read-only t))
(replace-match (concat "(" (replace-match (concat "("
(notmuch-tag-format-tags tags) (notmuch-tag-format-tags tags tags)
")")))))) ")"))))))
(defun notmuch-clean-address (address) (defun notmuch-clean-address (address)
@ -423,7 +423,7 @@ message at DEPTH in the current thread."
" (" " ("
date date
") (" ") ("
(notmuch-tag-format-tags tags) (notmuch-tag-format-tags tags tags)
")\n") ")\n")
(overlay-put (make-overlay start (point)) 'face 'notmuch-message-summary-face))) (overlay-put (make-overlay start (point)) 'face 'notmuch-message-summary-face)))

View file

@ -193,45 +193,71 @@ This can be used with `notmuch-tag-format-image-data'."
"Clear the internal cache of tag formats." "Clear the internal cache of tag formats."
(clrhash notmuch-tag--format-cache)) (clrhash notmuch-tag--format-cache))
(defun notmuch-tag-format-tag (tag) (defun notmuch-tag--get-formats (tag format-alist)
"Format TAG by according to `notmuch-tag-formats'. "Find the first item whose car regexp-matches TAG."
Callers must ensure that the tag format cache has been recently cleared
via `notmuch-tag-clear-cache' before using this function. For example,
it would be appropriate to clear the cache just prior to filling a
buffer that uses formatted tags."
(let ((formatted (gethash tag notmuch-tag--format-cache 'missing)))
(when (eq formatted 'missing)
(let* ((formats
(save-match-data (save-match-data
;; Don't use assoc-default since there's no way to ;; Don't use assoc-default since there's no way to distinguish a
;; distinguish a missing key from a present key with a ;; missing key from a present key with a null cdr.
;; null cdr:. (assoc* tag format-alist
(assoc* tag notmuch-tag-formats
:test (lambda (tag key) :test (lambda (tag key)
(and (eq (string-match key tag) 0) (and (eq (string-match key tag) 0)
(= (match-end 0) (length tag)))))))) (= (match-end 0) (length tag)))))))
(setq formatted
(cond (defun notmuch-tag--do-format (tag formatted-tag formats)
((null formats) ;; - Tag not in `notmuch-tag-formats', "Apply a tag-formats entry to TAG."
tag) ;; the format is the tag itself. (cond ((null formats) ;; - Tag not in `formats',
formatted-tag) ;; the format is the tag itself.
((null (cdr formats)) ;; - Tag was deliberately hidden, ((null (cdr formats)) ;; - Tag was deliberately hidden,
nil) ;; no format must be returned nil) ;; no format must be returned
(t ;; - Tag was found and has formats, (t
(let ((tag tag)) ;; we must apply all the formats. ;; Tag was found and has formats, we must apply all the
(dolist (format (cdr formats) tag) ;; formats. TAG may be null so treat that as a special case.
(setq tag (eval format))))))) (let ((bare-tag tag)
(puthash tag formatted notmuch-tag--format-cache))) (tag (copy-sequence (or formatted-tag ""))))
formatted)) (dolist (format (cdr formats))
(setq tag (eval format)))
(if (and (null formatted-tag) (equal tag ""))
nil
tag)))))
(defun notmuch-tag-format-tags (tags &optional face) (defun notmuch-tag-format-tag (tags orig-tags tag)
"Format TAG according to `notmuch-tag-formats'.
TAGS and ORIG-TAGS are lists of the current tags and the original
tags; tags which have been deleted (i.e., are in ORIG-TAGS but
are not in TAGS) are shown using formats from
`notmuch-tag-deleted-formats'; tags which have been added (i.e.,
are in TAGS but are not in ORIG-TAGS) are shown using formats
from `notmuch-tag-added-formats' and tags which have not been
changed (the normal case) are shown using formats from
`notmuch-tag-formats'"
(let* ((tag-state (cond ((not (member tag tags)) 'deleted)
((not (member tag orig-tags)) 'added)))
(formatted-tag (gethash (cons tag tag-state) notmuch-tag--format-cache 'missing)))
(when (eq formatted-tag 'missing)
(let ((base (notmuch-tag--get-formats tag notmuch-tag-formats))
(over (case tag-state
(deleted (notmuch-tag--get-formats
tag notmuch-tag-deleted-formats))
(added (notmuch-tag--get-formats
tag notmuch-tag-added-formats))
(otherwise nil))))
(setq formatted-tag (notmuch-tag--do-format tag tag base))
(setq formatted-tag (notmuch-tag--do-format tag formatted-tag over))
(puthash (cons tag tag-state) formatted-tag notmuch-tag--format-cache)))
formatted-tag))
(defun notmuch-tag-format-tags (tags orig-tags &optional face)
"Return a string representing formatted TAGS." "Return a string representing formatted TAGS."
(let ((face (or face 'notmuch-tag-face))) (let ((face (or face 'notmuch-tag-face))
(all-tags (sort (delete-dups (append tags orig-tags nil)) #'string<)))
(notmuch-apply-face (notmuch-apply-face
(mapconcat #'identity (mapconcat #'identity
;; nil indicated that the tag was deliberately hidden ;; nil indicated that the tag was deliberately hidden
(delq nil (mapcar #'notmuch-tag-format-tag tags)) (delq nil (mapcar
(apply-partially #'notmuch-tag-format-tag tags orig-tags)
all-tags))
" ") " ")
face face
t))) t)))

View file

@ -704,7 +704,7 @@ unchanged ADDRESS if parsing fails."
(face (if match (face (if match
'notmuch-tree-match-tag-face 'notmuch-tree-match-tag-face
'notmuch-tree-no-match-tag-face))) 'notmuch-tree-no-match-tag-face)))
(format format-string (notmuch-tag-format-tags tags face))))))) (format format-string (notmuch-tag-format-tags tags tags face)))))))
(defun notmuch-tree-format-field-list (field-list msg) (defun notmuch-tree-format-field-list (field-list msg)
"Format fields of MSG according to FIELD-LIST and return string" "Format fields of MSG according to FIELD-LIST and return string"

View file

@ -754,7 +754,7 @@ non-authors is found, assume that all of the authors match."
((string-equal field "tags") ((string-equal field "tags")
(let ((tags (plist-get result :tags))) (let ((tags (plist-get result :tags)))
(insert (format format-string (notmuch-tag-format-tags tags))))))) (insert (format format-string (notmuch-tag-format-tags tags tags)))))))
(defun notmuch-search-show-result (result &optional pos) (defun notmuch-search-show-result (result &optional pos)
"Insert RESULT at POS or the end of the buffer if POS is null." "Insert RESULT at POS or the end of the buffer if POS is null."

View file

@ -165,3 +165,8 @@ nothing."
(t (t
(notmuch-test-report-unexpected output expected))))) (notmuch-test-report-unexpected output expected)))))
;; For historical reasons, we hide deleted tags by default in the test
;; suite
(setq notmuch-tag-deleted-formats
'((".*" nil)))