Variable: eglot-advertise-cancellation
eglot-advertise-cancellation is a customizable variable defined in
eglot.el.gz.
Value
t
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.
This variable was added, or its default value changed, in Eglot version 1.22.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/eglot.el.gz
(defcustom eglot-advertise-cancellation t
"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
:package-version '(Eglot . "1.22"))