Function: parseedn-print-plist
parseedn-print-plist is a byte-compiled function defined in
parseedn.el.
Signature
(parseedn-print-plist PLIST)
Documentation
Insert an elisp property list PLIST as an EDN map into the current buffer.
Source Code
;; Defined in ~/.emacs.d/elpa/parseedn-20231203.1909/parseedn.el
(defun parseedn-print-plist (plist)
"Insert an elisp property list PLIST as an EDN map into the current buffer."
(parseedn-print (car plist))
(insert " ")
(parseedn-print (cadr plist))
(let ((next (cddr plist)))
(when (not (seq-empty-p next))
(insert ", ")
(parseedn-print-plist next))))