Function: eglot-clear-status
eglot-clear-status is an interactive and byte-compiled function
defined in eglot.el.gz.
Signature
(eglot-clear-status SERVER)
Documentation
Clear the last JSONRPC error for SERVER.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/eglot.el.gz
(defun eglot-clear-status (server)
"Clear the last JSONRPC error for SERVER."
(interactive (list (eglot--current-server-or-lose)))
(setf (jsonrpc-last-error server) nil))