[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/hyperdrive d75559667b 06/32: WIP
From: |
ELPA Syncer |
Subject: |
[nongnu] elpa/hyperdrive d75559667b 06/32: WIP |
Date: |
Mon, 4 Sep 2023 18:59:34 -0400 (EDT) |
branch: elpa/hyperdrive
commit d75559667b02f9d341df05f16baebc09d52a6cfa
Author: Adam Porter <adam@alphapapa.net>
Commit: Adam Porter <adam@alphapapa.net>
WIP
---
hyperdrive-vars.el | 23 +++++++++++++----------
1 file changed, 13 insertions(+), 10 deletions(-)
diff --git a/hyperdrive-vars.el b/hyperdrive-vars.el
index 08e4f09159..9c819293b1 100644
--- a/hyperdrive-vars.el
+++ b/hyperdrive-vars.el
@@ -102,16 +102,19 @@ 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 (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)))))))
+ :type '(radio (cons :tag "By name" (const :format "" hyperdrive-entry-name )
+ (choice :tag "Direction" :value string<
+ (const :tag "Ascending" string<)
+ (const :tag "Descending" string>)))
+ (cons :tag "By size" (const :format "" hyperdrive-entry-size)
+ (choice :tag "Direction" :value <
+ (const :tag "Ascending" <)
+ (const :tag "Descending" >)))
+ (cons :tag "By date" (const :format ""
hyperdrive-entry-modified)
+ (choice :tag "Direction" :value time-less-p
+ (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 b7bba05ca5 13/32: Fix: (hyperdrive-entry-create) Docstring, (continued)
- [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
- [nongnu] elpa/hyperdrive bf955d34d3 28/32: Add/Change: (hyperdrive-column-headers), ELPA Syncer, 2023/09/04
- [nongnu] elpa/hyperdrive de8a963986 05/32: WIP, ELPA Syncer, 2023/09/04
- [nongnu] elpa/hyperdrive d75559667b 06/32: WIP,
ELPA Syncer <=
- [nongnu] elpa/hyperdrive 126f767a46 12/32: Comment: Add TODO, ELPA Syncer, 2023/09/04
- [nongnu] elpa/hyperdrive 7d20ba30ad 19/32: Fix/Change: Use hyperdrive-queue-size everywhere, ELPA Syncer, 2023/09/04
- [nongnu] elpa/hyperdrive fb915a005c 25/32: Comment: Add TODO, ELPA Syncer, 2023/09/04
- [nongnu] elpa/hyperdrive 9100b1e748 29/32: Fix: (hyperdrive-column-headers), ELPA Syncer, 2023/09/04
- [nongnu] elpa/hyperdrive 369ec34f4f 21/32: Comment: Remove TODO, ELPA Syncer, 2023/09/04
- [nongnu] elpa/hyperdrive 899202254b 23/32: Comment: Remove TODO, ELPA Syncer, 2023/09/04
- [nongnu] elpa/hyperdrive 383c1c606e 17/32: Docs: Document hyperdrive-dir-sort, ELPA Syncer, 2023/09/04
- [nongnu] elpa/hyperdrive 32b319d850 20/32: Meta: Update changelog, ELPA Syncer, 2023/09/04
- [nongnu] elpa/hyperdrive f70d3276fc 22/32: Comment: Remove TODO, ELPA Syncer, 2023/09/04
- [nongnu] elpa/hyperdrive f670ac3cf7 26/32: Change: (-handler-directory) with-silent-modifications in finally, ELPA Syncer, 2023/09/04