Function: eglot--stay-out-of-p

eglot--stay-out-of-p is a byte-compiled function defined in eglot.el.gz.

Signature

(eglot--stay-out-of-p SYMBOL)

Documentation

Tell if Eglot should stay out of SYMBOL.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/eglot.el.gz
(defun eglot--stay-out-of-p (symbol)
  "Tell if Eglot should stay out of SYMBOL."
  (cl-find (symbol-name symbol) eglot-stay-out-of
           :test (lambda (s thing)
                   (let ((re (if (symbolp thing) (symbol-name thing) thing)))
                     (string-match re s)))))