Function: secrets-list-collections

secrets-list-collections is an autoloaded and byte-compiled function defined in secrets.el.gz.

Signature

(secrets-list-collections)

Documentation

Return a list of collection names.

Source Code

;; Defined in /usr/src/emacs/lisp/net/secrets.el.gz
(defun secrets-list-collections ()
  "Return a list of collection names."
  (mapcar
   (lambda (collection-path)
     (if (string-equal collection-path secrets-session-collection-path)
	 "session"
       (secrets-get-collection-property collection-path "Label")))
   (secrets-get-collections)))