Function: denote-query-only-include-files

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

Signature

(denote-query-only-include-files REGEXP)

Documentation

Only show files matching REGEXP in the current Denote query buffer.

REGEXP is matched against the file name.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/denote-4.2.3/denote.el
(defun denote-query-only-include-files (regexp)
  "Only show files matching REGEXP in the current Denote query buffer.
REGEXP is matched against the file name."
  (interactive
   (or (denote--user-error-if-not-major-mode 'denote-query-mode)
       (list (denote-query-prompt :include)))
   denote-query-mode)
  (denote-query--filter-files regexp :include))