branch: elpa/age
commit 890c467ebc27538507c54a03afd2f7260630d7f5
Author: Bas Alberts <[email protected]>
Commit: Bas Alberts <[email protected]>
add tags to repeat customization types
---
age.el | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/age.el b/age.el
index 27fe8e7505c..065f5aacb90 100644
--- a/age.el
+++ b/age.el
@@ -73,11 +73,11 @@ A nil value indicates that you want to use passphrase
encryption only.
This is mostly provided for let-binding convenience."
:type '(choice
(file :tag "File path to default recipient (public key path)")
- (repeat
- (choice
- (file :tag "File path to default recipient (public key path)")
- (string :tag "Default recipient (public key value")))
- (string :tag "Default recipient (public key value")))
+ (repeat :tag "List of default recipients (public key paths or
values)"
+ (choice
+ (file :tag "File path to default recipient (public key
path)")
+ (string :tag "Default recipient (public key value")))
+ (string :tag "Default recipient (public key value)")))
(defcustom age-default-identity (expand-file-name "~/.ssh/id_rsa")
"Default identity to use for age (private key).
@@ -90,9 +90,9 @@ a list of file paths to collections of private keys.
A nil value indicates that you want to use passphrase decryption only.
This is mostly provided for let-binding convenience."
:type '(choice
- (file :tag "File path to default identity (private key)")
- (repeat
- (file :tag "File path to default identity (private key)"))))
+ (file :tag "File path to default identity (private key path)")
+ (repeat :tag "List of default identities (private key paths)"
+ (file :tag "File path to default identity (private key
path)"))))
(defcustom age-always-use-default-keys t
"If non-nil, use default identities and recipients without nagging."