[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/denote 3ac1b83b80 2/3: Include the current time in the
From: |
ELPA Syncer |
Subject: |
[elpa] externals/denote 3ac1b83b80 2/3: Include the current time in the name of the denote-sort-dired buffer |
Date: |
Sun, 10 Dec 2023 00:59:15 -0500 (EST) |
branch: externals/denote
commit 3ac1b83b80cd0785e788d48cad624e170c5c1541
Author: Protesilaos Stavrou <info@protesilaos.com>
Commit: Protesilaos Stavrou <info@protesilaos.com>
Include the current time in the name of the denote-sort-dired buffer
---
denote-sort.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/denote-sort.el b/denote-sort.el
index a0394fd905..ac3fed55c1 100644
--- a/denote-sort.el
+++ b/denote-sort.el
@@ -182,7 +182,7 @@ a non-nil value, respectively."
;; 30+).
;;
;; (format "Denote sort `%s' by `%s'" files-matching-regexp
sort-by-component)
- (buffer-name (format "Denote sort by `%s'" sort-by-component))
+ (buffer-name (format "Denote sort by `%s' at %s" sort-by-component
(format-time-string "%T")))
(files (denote-sort-get-directory-files files-matching-regexp
sort-by-component reverse))
(dired-buffer (dired (cons buffer-name (mapcar #'file-relative-name
files)))))
(setq denote-sort--dired-buffer dired-buffer)