Function: denote-sort-exclude-files-prompt

denote-sort-exclude-files-prompt is a byte-compiled function defined in denote.el.

Signature

(denote-sort-exclude-files-prompt)

Documentation

Prompt for regular expression of files to exclude.

Source Code

;; Defined in ~/.emacs.d/elpa/denote-4.2.3/denote.el
(defun denote-sort-exclude-files-prompt ()
  "Prompt for regular expression of files to exclude."
  ;; TODO 2024-12-03: Maybe use `read-regexp'?  We do not use it
  ;; elsewhere, so maybe this is fine.
  (let ((default (car denote-sort-exclude-files-history)))
    (read-string
     (format-prompt "Exclude files matching REGEXP" default)
     default 'denote-sort-exclude-files-history)))