mirror of
https://github.com/SqrtMinusOne/password-store-completion.git
synced 2025-12-10 18:03:03 +03:00
fix: custom sequences
This commit is contained in:
parent
60a2862cb8
commit
473d76790f
1 changed files with 1 additions and 1 deletions
|
|
@ -260,7 +260,7 @@ the current entry available via the `entry' variable."
|
||||||
(if (string-match (rx bos "sequence-") field-name)
|
(if (string-match (rx bos "sequence-") field-name)
|
||||||
`(,field-name
|
`(,field-name
|
||||||
. ,(condition-case err
|
. ,(condition-case err
|
||||||
(eval (car (read-from-string (cdr item))))
|
(car (read-from-string (cdr item)))
|
||||||
(error (user-error "Error in %s: %s" field-name
|
(error (user-error "Error in %s: %s" field-name
|
||||||
(prin1-to-string err)))))
|
(prin1-to-string err)))))
|
||||||
`(,field-name . (wait (field . ,(car item)))))))
|
`(,field-name . (wait (field . ,(car item)))))))
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue