mirror of
https://github.com/org-roam/org-roam
synced 2025-08-01 12:17:21 -05:00
fix highlights for completing-read #1467
This commit is contained in:
@ -610,10 +610,11 @@ is the `org-roam-node'."
|
||||
:title title
|
||||
:point pos
|
||||
:tags (gethash id tags-table)))
|
||||
(candidate-main (org-roam-node--format-entry node (1- (frame-width))))
|
||||
(tag-str (org-roam--tags-to-str (org-roam-node-tags node))))
|
||||
(cons (propertize (concat tag-str " " alias)
|
||||
'node node
|
||||
'display (org-roam-node--format-entry node (1- (frame-width))))
|
||||
(cons (concat (propertize tag-str 'invisible t)
|
||||
candidate-main
|
||||
(propertize alias 'invisible t))
|
||||
node)))))
|
||||
|
||||
(defun org-roam-node-read (&optional initial-input filter-fn require-match)
|
||||
|
Reference in New Issue
Block a user