Function: denote-query-clear-all-filters

denote-query-clear-all-filters is an interactive and byte-compiled function defined in denote.el.

Signature

(denote-query-clear-all-filters)

Documentation

Run last search with the full set of files in the variable denote-directory(var)/denote-directory(fun).

This effectively gets ride of any interactive filter applied (by the means of e.g. denote-query-exclude-files).

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/denote-4.2.3/denote.el
(defun denote-query-clear-all-filters ()
  "Run last search with the full set of files in the variable `denote-directory'.

This effectively gets ride of any interactive filter applied (by the
means of e.g. `denote-query-exclude-files')."
  (interactive nil denote-query-mode)
  (denote--user-error-if-not-major-mode 'denote-query-mode)
  (denote-make-links-buffer denote-query--last-query nil (buffer-name) '(display-buffer-same-window))
  (message "Cleared all filters"))