Function: cider-jar-contents

cider-jar-contents is a byte-compiled function defined in cider-jar.el.

Signature

(cider-jar-contents JARFILE)

Documentation

Get the list of filenames in a jar (or zip) file.

JARFILE is the location of the archive.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-jar.el
(defun cider-jar-contents (jarfile)
  "Get the list of filenames in a jar (or zip) file.
JARFILE is the location of the archive."
  (with-temp-buffer
    (set-buffer-multibyte nil)
    (setq buffer-file-coding-system 'binary)
    (insert-file-contents-literally jarfile nil)
    (cider-jar--archive-zip-summarize)))