Function: denote-find-backlink-with-location
denote-find-backlink-with-location is an autoloaded, interactive and
byte-compiled function defined in denote.el.
Signature
(denote-find-backlink-with-location)
Documentation
Like denote-find-backlink but jump to the exact location of the link.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/denote-4.2.3/denote.el
;;;###autoload
(defun denote-find-backlink-with-location ()
"Like `denote-find-backlink' but jump to the exact location of the link."
(declare (interactive-only t))
(interactive)
(when-let* ((current-file buffer-file-name)
(id (or (denote-retrieve-filename-identifier current-file)
(user-error "The current file does not have a Denote identifier")))
(files (denote-directory-files nil :omit-current :text-only))
(fetcher (lambda () (xref-matches-in-files id files))))
(xref-show-definitions-completing-read fetcher nil)))