Variable: denote-keywords-to-not-infer-regexp
denote-keywords-to-not-infer-regexp is a customizable variable defined
in denote.el.
Value
nil
Documentation
Regular expression of keywords to not infer.
Keywords are inferred from file names and provided at relevant
prompts as completion candidates when the user option
denote-infer-keywords is non-nil.
The match is performed with string-match-p.
This variable was added, or its default value changed, in denote version 4.2.0.
Aliases
denote-excluded-keywords-regexp (obsolete since 4.2.0)
Source Code
;; Defined in ~/.emacs.d/elpa/denote-4.2.3/denote.el
(defcustom denote-keywords-to-not-infer-regexp nil
"Regular expression of keywords to not infer.
Keywords are inferred from file names and provided at relevant
prompts as completion candidates when the user option
`denote-infer-keywords' is non-nil.
The match is performed with `string-match-p'."
:group 'denote
:package-version '(denote . "4.2.0")
:type '(choice (const :tag "Do not filter out anything (default)" nil)
(string :tag "Regular expression")))