update packages and add valign

This commit is contained in:
2026-04-05 20:00:27 +02:00
parent b062fb98e3
commit 03fb00e374
640 changed files with 109768 additions and 39311 deletions

View File

@@ -7,7 +7,7 @@
;; Leo Vivier <leo.vivier+dev@gmail.com>
;; URL: https://github.com/org-roam/org-roam
;; Keywords: org-mode, roam, convenience
;; Package-Requires: ((emacs "26.1") (dash "2.13") (org-roam "2.1"))
;; Package-Requires: ((emacs "26.1") (org-roam "2.1"))
;; This file is NOT part of GNU Emacs.
@@ -36,7 +36,6 @@
;; scratch notes or whatever else you can think of.
;;
;;; Code:
(require 'dash)
(require 'org-roam)
;;; Faces
@@ -268,13 +267,13 @@ negative, find note N days in the future."
"List all files in `org-roam-dailies-directory'.
EXTRA-FILES can be used to append extra files to the list."
(let ((dir (expand-file-name org-roam-dailies-directory org-roam-directory))
(regexp (rx-to-string `(and "." (or ,@org-roam-file-extensions)))))
(append (--remove (let ((file (file-name-nondirectory it)))
(when (or (auto-save-file-name-p file)
(backup-file-name-p file)
(string-match "^\\." file))
it))
(directory-files-recursively dir regexp))
(regexp (rx-to-string `(seq (literal ".") (or ,@org-roam-file-extensions) eos))))
(append (seq-remove (lambda (file)
(let ((name (file-name-nondirectory file)))
(or (auto-save-file-name-p name)
(backup-file-name-p name)
(string-match "^\\." name))))
(directory-files-recursively dir regexp))
extra-files)))
(defun org-roam-dailies--daily-note-p (&optional file)