Function: denote-link-ol-complete

denote-link-ol-complete is an autoloaded and byte-compiled function defined in denote.el.

Signature

(denote-link-ol-complete)

Documentation

Like denote-link but for Org integration.

This lets the user complete a link through the org-insert-link interface by first selecting the denote: hyperlink type.

Source Code

;; Defined in ~/.emacs.d/elpa/denote-4.2.3/denote.el
;;;###autoload
(defun denote-link-ol-complete ()
  "Like `denote-link' but for Org integration.
This lets the user complete a link through the `org-insert-link'
interface by first selecting the `denote:' hyperlink type."
  (if-let* ((file (denote-file-prompt nil nil nil :has-identifier)))
      (concat "denote:" (denote-retrieve-filename-identifier file))
    (user-error "No files in `denote-directory'")))