Function: denote--exclude-directory-regexp-p

denote--exclude-directory-regexp-p is a byte-compiled function defined in denote.el.

Signature

(denote--exclude-directory-regexp-p FILE)

Documentation

Return non-nil if FILE matches denote-excluded-directories-regexp.

Source Code

;; Defined in ~/.emacs.d/elpa/denote-4.2.3/denote.el
(defun denote--exclude-directory-regexp-p (file)
  "Return non-nil if FILE matches `denote-excluded-directories-regexp'."
  (and (stringp denote-excluded-directories-regexp)
       (string-match-p denote-excluded-directories-regexp file)))