Function: denote-link--collect-identifiers

denote-link--collect-identifiers is a byte-compiled function defined in denote.el.

Signature

(denote-link--collect-identifiers REGEXP)

Documentation

Return collection of identifiers in buffer matching REGEXP.

Source Code

;; Defined in ~/.emacs.d/elpa/denote-4.2.3/denote.el
(defun denote-link--collect-identifiers (regexp)
  "Return collection of identifiers in buffer matching REGEXP."
  (let (matches)
    (save-excursion
      (goto-char (point-min))
      (while (re-search-forward regexp nil t)
        (push (match-string-no-properties 1) matches)))
    matches))