Variable: eglot-advertise-cancellation

eglot-advertise-cancellation is a customizable variable defined in eglot.el.gz.

Value

nil

Documentation

If non-nil, Eglot attempts to inform server of canceled requests.

This is done by sending an additional '$/cancelRequest' notification every time Eglot decides to forget a request. The effect of this notification is implementation defined, and is only useful for some servers.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/eglot.el.gz
(defcustom eglot-advertise-cancellation nil
  "If non-nil, Eglot attempts to inform server of canceled requests.
This is done by sending an additional '$/cancelRequest' notification
every time Eglot decides to forget a request.  The effect of this
notification is implementation defined, and is only useful for some
servers."
  :type 'boolean)