Function: denote-files-matching-regexp-prompt
denote-files-matching-regexp-prompt is a byte-compiled function
defined in denote.el.
Signature
(denote-files-matching-regexp-prompt &optional PROMPT-TEXT)
Documentation
Prompt for REGEXP to filter Denote files by.
With optional PROMPT-TEXT use it instead of a generic prompt.
Source Code
;; Defined in ~/.emacs.d/elpa/denote-4.2.3/denote.el
(defun denote-files-matching-regexp-prompt (&optional prompt-text)
"Prompt for REGEXP to filter Denote files by.
With optional PROMPT-TEXT use it instead of a generic prompt."
(denote--with-conditional-completion
'denote-files-matching-regexp-prompt
(format-prompt (or prompt-text "Match files with the given REGEXP") nil)
denote-files-matching-regexp-history))