mirror of
https://github.com/org-roam/org-roam
synced 2025-08-01 12:17:21 -05:00
(fix): remove invisible tag (#1641)
This commit is contained in:
@ -773,12 +773,8 @@ GROUP BY id")))
|
||||
|
||||
(defun org-roam-node--to-candidate (node)
|
||||
"Return a minibuffer completion candidate given NODE."
|
||||
(let ((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 candidate-main
|
||||
(propertize tag-str 'invisible t))
|
||||
'node node)
|
||||
node)))
|
||||
(let ((candidate-main (org-roam-node--format-entry node (1- (frame-width)))))
|
||||
(cons (propertize candidate-main 'node node) node)))
|
||||
|
||||
(defun org-roam-node--completions ()
|
||||
"Return an alist for node completion.
|
||||
|
Reference in New Issue
Block a user