Function: eglot-unregister-capability

eglot-unregister-capability is a byte-compiled function defined in eglot.el.gz.

Signature

(eglot-unregister-capability SERVER METHOD ID &rest PARAMS)

Documentation

Ask SERVER to register capability METHOD marked with ID.

Implementations

(eglot-unregister-capability SERVER (METHOD (eql workspace/didChangeWatchedFiles)) ID) in `eglot.el'.

Handle dynamic unregistration of workspace/didChangeWatchedFiles.

(eglot-unregister-capability S METHOD ID &rest PARAMS) in `eglot.el'.

Undocumented

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/eglot.el.gz
(cl-defgeneric eglot-unregister-capability (server method id &rest params)
  "Ask SERVER to register capability METHOD marked with ID."
  (:method
   (_s method _id &rest _params)
   (eglot--warn "Server tried to unregister unsupported capability `%s'"
                method)))