Function: denote-get-link-identifier-or-query-term-at-point

denote-get-link-identifier-or-query-term-at-point is a byte-compiled function defined in denote.el.

Signature

(denote-get-link-identifier-or-query-term-at-point &optional POSITION)

Documentation

Return the Denote identifier or query term at point or optional POSITION.

Aliases

denote-get-identifier-at-point (obsolete since 4.0.0)

Source Code

;; Defined in ~/.emacs.d/elpa/denote-4.2.3/denote.el
(defun denote-get-link-identifier-or-query-term-at-point (&optional position)
  "Return the Denote identifier or query term at point or optional POSITION."
  (let* ((data (denote--link-at-point-get-data (or position (point))))
         (target (caar data)))
    target))