Variable: denote-excluded-files-regexp
denote-excluded-files-regexp is a customizable variable defined in
denote.el.
Value
nil
Documentation
Regular expression of files that are excluded from Denote file prompts.
Files are provided for completion when using commands like denote-link
and denote-open-or-create.
The match is performed with string-match-p on the full file path.
This variable was added, or its default value changed, in denote version 3.0.0.
Source Code
;; Defined in ~/.emacs.d/elpa/denote-4.2.3/denote.el
(defcustom denote-excluded-files-regexp nil
"Regular expression of files that are excluded from Denote file prompts.
Files are provided for completion when using commands like `denote-link'
and `denote-open-or-create'.
The match is performed with `string-match-p' on the full file path."
:group 'denote
:package-version '(denote . "3.0.0")
:type '(choice (const :tag "Do not filter out anything (default)" nil)
(string :tag "Regular expression")))