Function: eglot--plist-keys

eglot--plist-keys is a byte-compiled function defined in eglot.el.gz.

Signature

(eglot--plist-keys PLIST)

Documentation

Get keys of a plist.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/eglot.el.gz
(defun eglot--plist-keys (plist) "Get keys of a plist."
  (cl-loop for (k _v) on plist by #'cddr collect k))