Function: eglot--hierarchy-interactive
eglot--hierarchy-interactive is a byte-compiled function defined in
eglot.el.gz.
Signature
(eglot--hierarchy-interactive SPECS)
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/eglot.el.gz
(defun eglot--hierarchy-interactive (specs)
(let ((ans
(completing-read "[eglot] Direction (default both)?"
(cons "both" (mapcar #'cl-fourth specs))
nil t nil nil "both")))
(list
(cond ((equal ans "both") t)
(t (cl-third (cl-find ans specs :key #'cl-fourth :test #'equal)))))))