@@ -738,7 +738,7 @@ Based on =deft-find-file=.
738
738
(defun zetteldeft-find-file (file)
739
739
"Open deft file FILE."
740
740
(interactive
741
- (list (zetteldeft-completing-read "Deft find file: "
741
+ (list (funcall zetteldeft-completing-read "Deft find file: "
742
742
(deft-find-all-files-no-prefix))))
743
743
(deft-find-file file))
744
744
#+END_SRC
@@ -781,7 +781,7 @@ Based on =deft-find-file=.
781
781
(defun zetteldeft-find-file-id-insert (file)
782
782
"Find deft file FILE and insert a link."
783
783
(interactive (list
784
- (zetteldeft-completing-read "File to insert id from: "
784
+ (funcall zetteldeft-completing-read "File to insert id from: "
785
785
(deft-find-all-files-no-prefix))))
786
786
(insert (concat zetteldeft-link-indicator
787
787
(zetteldeft--lift-id file)
@@ -811,7 +811,7 @@ Include the prefix on a new line after the title, and add ID and title.
811
811
Finds the title line, and adds `backlink-prefix' with
812
812
ID and title on a new line."
813
813
(interactive (list
814
- (zetteldeft-completing-read "File to add backlink to: "
814
+ (funcall zetteldeft-completing-read "File to add backlink to: "
815
815
(deft-find-all-files-no-prefix))))
816
816
(save-excursion
817
817
(goto-char (point-min))
@@ -844,7 +844,7 @@ Based on =deft-find-file=.
844
844
(defun zetteldeft-find-file-full-title-insert (file)
845
845
"Find deft file FILE and insert a link with title."
846
846
(interactive (list
847
- (zetteldeft-completing-read "File to insert full title from: "
847
+ (funcall zetteldeft-completing-read "File to insert full title from: "
848
848
(deft-find-all-files-no-prefix))))
849
849
(insert zetteldeft-link-indicator
850
850
(zetteldeft--lift-id file)
@@ -2051,7 +2051,7 @@ When called interactively, select a file from the completion interface.
2051
2051
(defun zetteldeft-org-graph-note (deftFile)
2052
2052
"Create a graph starting from note DEFTFILE."
2053
2053
(interactive (list
2054
- (zetteldeft-completing-read "Note to start graph from: "
2054
+ (funcall zetteldeft-completing-read "Note to start graph from: "
2055
2055
(deft-find-all-files))))
2056
2056
(setq zetteldeft--graph-links (list))
2057
2057
(insert zetteldeft-graph-syntax-begin)
0 commit comments