-
Notifications
You must be signed in to change notification settings - Fork 1
/
jmail-capf.el
80 lines (64 loc) · 2.75 KB
/
jmail-capf.el
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
77
78
79
80
;;; jmail-capf.el --- Completion at point function
;; Copyright (C) 2022 Julien Masson.
;; Author: Julien Masson
;; URL: https://github.com/JulienMasson/jmail
;; Created: 2022-08-27
;;; License
;; This program 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.
;; This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
;;; Code:
;;; Internal Functions
(defun jmail-capf--candidate-at-line ()
(when-let ((str (buffer-substring (line-beginning-position)
(line-end-position)))
(mail-regexp "\\([[:graph:]]*\\)@\\([[:graph:]]*\\)$"))
(cond ((string-match (concat "\\(.*\\) " mail-regexp) str)
(format "%s <%s@%s>" (match-string 1 str)
(match-string 2 str)
(match-string 3 str)))
((string-match mail-regexp str)
(format "<%s@%s>" (match-string 1 str)
(match-string 2 str))))))
(defun jmail-capf--candidates (arg)
(let ((args (list "cfind" "--nocolor" arg))
candidates)
(with-temp-buffer
(apply #'process-file "mu" nil (current-buffer) nil args)
(goto-char (point-min))
(while (not (eobp))
(add-to-list 'candidates (jmail-capf--candidate-at-line))
(forward-line)))
candidates))
(defun jmail-capf--expand-name ()
(let ((beg (save-excursion
(skip-chars-backward "^\n:,") (skip-chars-forward " \t")
(point)))
(end (save-excursion
(skip-chars-forward "^\n,") (skip-chars-backward " \t")
(point))))
(when (< beg end)
(let ((candidates (jmail-capf--candidates (buffer-substring beg end))))
(list beg end `(lambda (string pred action)
(pcase action
('metadata '(metadata (category . email)))
('lambda t)
('nil (try-completion string ,candidates))
('t (all-completions "" ',candidates pred)))))))))
(defun jmail-capf--in-header ()
(let ((mail-abbrev-mode-regexp message-email-recipient-header-regexp))
(mail-abbrev-in-expansion-header-p)))
;;; External Functions
(defun jmail-completion-at-point ()
(when (jmail-capf--in-header)
(jmail-capf--expand-name)))
(defun jmail-capf-setup ()
(add-hook 'completion-at-point-functions #'jmail-completion-at-point nil t))
(provide 'jmail-capf)