Function: denote-query-only-include-files-with-keywords

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

Signature

(denote-query-only-include-files-with-keywords KEYWORDS)

Documentation

Only show files with KEYWORDS in the current Denote query buffer.

See denote-query-exclude-files-with-keywords for details.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/denote-4.2.3/denote.el
(defun denote-query-only-include-files-with-keywords (keywords)
  "Only show files with KEYWORDS in the current Denote query buffer.

See `denote-query-exclude-files-with-keywords' for details."
  (interactive
   (or (denote--user-error-if-not-major-mode 'denote-query-mode)
       (list (denote-keywords-prompt "Only include files with keywords")))
   denote-query-mode)
  (denote-query--filter-keywords keywords :include))