[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/hyperdrive 0478d21827 04/32: WIP
From: |
ELPA Syncer |
Subject: |
[nongnu] elpa/hyperdrive 0478d21827 04/32: WIP |
Date: |
Mon, 4 Sep 2023 18:59:33 -0400 (EDT) |
branch: elpa/hyperdrive
commit 0478d218275b78801c091a6a29fc6cc75bc9d5b6
Author: Adam Porter <adam@alphapapa.net>
Commit: Adam Porter <adam@alphapapa.net>
WIP
---
hyperdrive-vars.el | 13 ++++++++++---
1 file changed, 10 insertions(+), 3 deletions(-)
diff --git a/hyperdrive-vars.el b/hyperdrive-vars.el
index 6f48943512..08e4f09159 100644
--- a/hyperdrive-vars.el
+++ b/hyperdrive-vars.el
@@ -102,9 +102,16 @@ Internally, a cons cell of (KEY . PREDICATE), the KEY
being the
appropriate function (e.g. `time-less-p' for
`hyperdrive-entry-modified', `<' for `hyperdrive-entry-size',
etc)."
- :type '(choice (const :tag "By name" (hyperdrive-entry-name . string<))
- (const :tag "By size" (hyperdrive-entry-size . <))
- (const :tag "By date" (hyperdrive-entry-modified .
time-less-p)))
+ :type '(choice (cons :tag "By name" (const hyperdrive-entry-name)
+ (choice (const :tag "Ascending" string<)
+ (const :tag "Descending" string>)))
+ (cons :tag "By size" (const hyperdrive-entry-size)
+ (choice (const :tag "Ascending" <)
+ (const :tag "Descending" >)))
+ (cons :tag "By date" (const hyperdrive-entry-modified)
+ (choice (const :tag "Ascending" time-less-p)
+ (const :tag "Descending" (lambda (a b)
+ (not (time-less-p a
b)))))))
:group 'hyperdrive)
(defcustom hyperdrive-history-display-buffer-action
- [nongnu] elpa/hyperdrive updated (daaed0257d -> 27c1a81a51), ELPA Syncer, 2023/09/04
- [nongnu] elpa/hyperdrive 9d9b5c3826 02/32: WIP, ELPA Syncer, 2023/09/04
- [nongnu] elpa/hyperdrive 46eac0a67d 03/32: WIP, ELPA Syncer, 2023/09/04
- [nongnu] elpa/hyperdrive 29c70adbf9 08/32: Fix, ELPA Syncer, 2023/09/04
- [nongnu] elpa/hyperdrive 0334ccfa0d 01/32: WIP, ELPA Syncer, 2023/09/04
- [nongnu] elpa/hyperdrive 77c36c870c 16/32: Tidy: (hyperdrive-complete-sort) Use list, ELPA Syncer, 2023/09/04
- [nongnu] elpa/hyperdrive 0478d21827 04/32: WIP,
ELPA Syncer <=
- [nongnu] elpa/hyperdrive beb1f180fa 11/32: Tidy: (hyperdrive-dir-sort) Nest to avoid setf, ELPA Syncer, 2023/09/04
- [nongnu] elpa/hyperdrive 2b1ab2ba8e 15/32: Comment: (hyperdrive-sort-entries) Explain sorting behavior, ELPA Syncer, 2023/09/04
- [nongnu] elpa/hyperdrive b7bba05ca5 13/32: Fix: (hyperdrive-entry-create) Docstring, ELPA Syncer, 2023/09/04
- [nongnu] elpa/hyperdrive c56644f9ea 14/32: Tidy: Whitespace, ELPA Syncer, 2023/09/04
- [nongnu] elpa/hyperdrive 45802e59cc 18/32: Fix: (hyperdrive-handler-directory) Ensure buffer-modified-p nil, ELPA Syncer, 2023/09/04
- [nongnu] elpa/hyperdrive bd440b6465 27/32: Remove: (hyperdrive-column-headers), ELPA Syncer, 2023/09/04
- [nongnu] elpa/hyperdrive 27c1a81a51 32/32: Merge branch 'wip/dir-sort', ELPA Syncer, 2023/09/04
- [nongnu] elpa/hyperdrive c2af53e72d 07/32: Add: (hyperdrive-dir-sort, hyperdrive-complete-sort), ELPA Syncer, 2023/09/04
- [nongnu] elpa/hyperdrive 994b782630 09/32: Comment: Add TODO, ELPA Syncer, 2023/09/04
- [nongnu] elpa/hyperdrive aa969e7bf5 10/32: Add: Progress report in footer, ELPA Syncer, 2023/09/04