Function: denote-query-exclude-files-with-keywords

denote-query-exclude-files-with-keywords is an interactive and byte-compiled function defined in denote.el.

Signature

(denote-query-exclude-files-with-keywords KEYWORDS)

Documentation

Exclude files with KEYWORDS from current query buffer.

KEYWORDS should be a list of keywords (without underscore).

Interactively, KEYWORDS are read from the minibuffer using completing-read-multiple, which see.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/denote-4.2.3/denote.el
(defun denote-query-exclude-files-with-keywords (keywords)
  "Exclude files with KEYWORDS from current query buffer.

KEYWORDS should be a list of keywords (without underscore).

Interactively, KEYWORDS are read from the minibuffer using
`completing-read-multiple', which see."
  (interactive
   (or (denote--user-error-if-not-major-mode 'denote-query-mode)
       (list (denote-keywords-prompt "Exclude files with keywords")))
   denote-query-mode)
  (denote-query--filter-keywords keywords nil))