unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
blob 1f83e295eedc082d1b49fbf36c2b5dbfdfd5ca1c 2401 bytes (raw)
name: emacs/notmuch-tager.el 	 # note: path name is non-authoritative(*)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
 
;; notmuch-tager.el --- Library to show labels as links
;;
;; Copyright © Damien Cassou
;;
;; This file is part of Notmuch.
;;
;; Notmuch is free software: you can redistribute it and/or modify it
;; under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;;
;; Notmuch is distributed in the hope that it will be useful, but
;; WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
;; General Public License for more details.
;;
;; You should have received a copy of the GNU General Public License
;; along with Notmuch.  If not, see <http://www.gnu.org/licenses/>.
;;
;; Authors: Damien Cassou <damien.cassou@gmail.com>
;;; Commentary:
;;
;;; Code:
;;

(require 'button)
(require 'header-button)

(defun notmuch-tager-separate-elems (list sep)
  "Return a list with all elements of LIST separated by SEP."
  (let ((first t)
        (res nil))
    (dolist (elt (reverse list) res)
      (unless first
        (push sep res))
      (setq first nil)
      (push elt res))))

(defun notmuch-tager-goto-target (target)
  "Show a `notmuch-search' buffer for the TARGET tag."
  (notmuch-search (concat "tag:" target)))

(defun notmuch-tager-button-action (button)
  "Open `notmuch-search' for the tag referenced by BUTTON."
  (let ((tag (header-button-get button :notmuch-tager-tag)))
    (notmuch-tager-goto-target tag)))

(define-button-type 'notmuch-tager-button-type
  :supertype 'header
  :action    'notmuch-tager-button-action
  :follow-link t)

(defun notmuch-tager-make-link (target)
  "Return a property list that presents a link to TARGET.

TARGET is a notmuch tag."
  (header-button-format
   target
   :type 'notmuch-tager-button-type
   :notmuch-tager-tag target
   :help-echo (format "%s: Search other messages like this" target)))

(defun notmuch-tager-format-tags (tags)
  "Return a format list for TAGS suitable for use in header line.
See Info node `(elisp)Mode Line Format' for more information."
  (mapcar 'notmuch-tager-make-link tags))

(defun notmuch-tager-present-tags (tags)
  "Return a property list which nicely presents all TAGS."
  (list
   " ("
   (notmuch-tager-separate-elems (notmuch-tager-format-tags tags) ", ")
   ")"))

(provide 'notmuch-tager)
;;; notmuch-tager.el ends here

debug log:

solving 1f83e29 ...
found 1f83e29 in https://yhetil.org/notmuch/1352234344-28119-1-git-send-email-damien.cassou@gmail.com/

applying [1/1] https://yhetil.org/notmuch/1352234344-28119-1-git-send-email-damien.cassou@gmail.com/
diff --git a/emacs/notmuch-tager.el b/emacs/notmuch-tager.el
new file mode 100644
index 0000000..1f83e29

Checking patch emacs/notmuch-tager.el...
Applied patch emacs/notmuch-tager.el cleanly.

index at:
100644 1f83e295eedc082d1b49fbf36c2b5dbfdfd5ca1c	emacs/notmuch-tager.el

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

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