Function: denote-link-ol-help-echo
denote-link-ol-help-echo is a byte-compiled function defined in
denote.el.
Signature
(denote-link-ol-help-echo WINDOW OBJECT POSITION)
Documentation
Echo the full file path of the identifier at POSITION.
Source Code
;; Defined in ~/.emacs.d/elpa/denote-4.2.3/denote.el
(defun denote-link-ol-help-echo (_window _object position)
"Echo the full file path of the identifier at POSITION."
(let* ((data (denote--link-at-point-get-data position))
(target (caar data)))
(denote-get-path-by-id target)))