@@ -895,7 +895,7 @@ Based on =deft-find-file=.
895
895
(defun zetteldeft-find-file-id-insert (file)
896
896
"Find deft file FILE and insert a link."
897
897
(interactive (list
898
- (zetteldeft-completing-read "File to insert id from: "
898
+ (funcall zetteldeft-completing-read "File to insert id from: "
899
899
(deft-find-all-files-no-prefix))))
900
900
(zetteldeft--insert-link (zetteldeft--lift-id file)))
901
901
#+END_SRC
@@ -972,7 +972,7 @@ The backlink appears on a new line.
972
972
Finds the title line, and adds `backlink-prefix' with
973
973
ID and title on a new line."
974
974
(interactive (list
975
- (zetteldeft-completing-read "File to add backlink to: "
975
+ (funcall zetteldeft-completing-read "File to add backlink to: "
976
976
(deft-find-all-files-no-prefix))))
977
977
(save-excursion
978
978
(goto-char (funcall zetteldeft-backlink-location-function))
@@ -995,7 +995,7 @@ Based on =deft-find-file=.
995
995
(defun zetteldeft-find-file-full-title-insert (file)
996
996
"Find deft file FILE and insert a link with title."
997
997
(interactive (list
998
- (zetteldeft-completing-read "File to insert full title from: "
998
+ (funcall zetteldeft-completing-read "File to insert full title from: "
999
999
(deft-find-all-files-no-prefix))))
1000
1000
(let ((id (zetteldeft--lift-id file)))
1001
1001
(zetteldeft--insert-link
@@ -2634,7 +2634,7 @@ When called interactively, select a file from the completion interface.
2634
2634
(defun zetteldeft-org-graph-note (deftFile)
2635
2635
"Create a graph starting from note DEFTFILE."
2636
2636
(interactive (list
2637
- (zetteldeft-completing-read "Note to start graph from: "
2637
+ (funcall zetteldeft-completing-read "Note to start graph from: "
2638
2638
(deft-find-all-files))))
2639
2639
(setq zetteldeft--graph-links (list))
2640
2640
(insert zetteldeft-graph-syntax-begin)
0 commit comments