Function: denote--get-component-key-regexp-function
denote--get-component-key-regexp-function is a byte-compiled function
defined in denote.el.
Signature
(denote--get-component-key-regexp-function COMPONENT)
Documentation
Return COMPONENT's key regexp function.
COMPONENT can be one of title, keywords, identifier, date, signature.
Source Code
;; Defined in ~/.emacs.d/elpa/denote-4.2.3/denote.el
(defun denote--get-component-key-regexp-function (component)
"Return COMPONENT's key regexp function.
COMPONENT can be one of `title', `keywords', `identifier', `date', `signature'."
(pcase component
('title #'denote--title-key-regexp)
('keywords #'denote--keywords-key-regexp)
('signature #'denote--signature-key-regexp)
('date #'denote--date-key-regexp)
('identifier #'denote--identifier-key-regexp)))