aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/org-contacts-config.el22
-rw-r--r--modules/signal-config.el8
2 files changed, 25 insertions, 5 deletions
diff --git a/modules/org-contacts-config.el b/modules/org-contacts-config.el
index 64abb9fb5..944d75c10 100644
--- a/modules/org-contacts-config.el
+++ b/modules/org-contacts-config.el
@@ -168,15 +168,29 @@ Added: %U"
;;; ------------------------- Quick Contact Functions ---------------------------
+(require 'system-lib)
+
(defun cj/org-contacts-find ()
"Find and open a contact."
(interactive)
(find-file contacts-file)
(goto-char (point-min))
- (let ((contact (completing-read "Find contact: "
- (org-map-entries
- (lambda () (nth 4 (org-heading-components)))
- nil (list contacts-file)))))
+ (let* ((alist (org-map-entries
+ (lambda ()
+ (cons (nth 4 (org-heading-components))
+ (or (org-entry-get nil "EMAIL")
+ (org-entry-get nil "PHONE"))))
+ nil (list contacts-file)))
+ (contact (completing-read
+ "Find contact: "
+ (cj/completion-table-annotated
+ 'contact
+ (lambda (cand)
+ (let ((info (cdr (assoc cand alist))))
+ (when (and info (> (length info) 0))
+ (concat " " (propertize info 'face
+ 'completions-annotations)))))
+ alist))))
(goto-char (point-min))
(search-forward contact)
(org-fold-show-entry)
diff --git a/modules/signal-config.el b/modules/signal-config.el
index 86cb523ce..edb7d0dc3 100644
--- a/modules/signal-config.el
+++ b/modules/signal-config.el
@@ -309,7 +309,13 @@ opens the chosen recipient in `signel-chat'."
(candidates (cons note-self cj/signel--contact-cache))
(table (lambda (string pred action)
(if (eq action 'metadata)
- '(metadata
+ `(metadata
+ (category . signal-contact)
+ (annotation-function
+ . ,(lambda (cand)
+ (let ((r (cdr (assoc cand candidates))))
+ (when r
+ (concat " " (propertize r 'face 'completions-annotations))))))
(display-sort-function . identity)
(cycle-sort-function . identity))
(complete-with-action action candidates string pred))))