Function: eglot-handle-notification

eglot-handle-notification is a byte-compiled function defined in eglot.el.gz.

Signature

(eglot-handle-notification SERVER METHOD &rest PARAMS)

Documentation

Handle SERVER's METHOD notification with PARAMS.

Implementations

(eglot-handle-notification ARG1 (ARG2 (eql textDocument/publishDiagnostics)) &rest REST) in `eglot.el'.

Handle notification publishDiagnostics.

(eglot-handle-notification ARG1 (ARG2 (eql $/progress)) &rest REST) in `eglot.el'.

Handle $/progress notification identified by TOKEN from SERVER.

(eglot-handle-notification SERVER (METHOD (eql telemetry/event)) &rest ANY) in `eglot.el'.

Undocumented

(eglot-handle-notification ARG1 (ARG2 (eql window/logMessage)) &rest REST) in `eglot.el'.

Undocumented

(eglot-handle-notification ARG1 (ARG2 (eql window/showMessage)) &rest REST) in `eglot.el'.

Handle notification window/showMessage.

(eglot-handle-notification ARG1 ARG2 &rest REST) in `eglot.el'.

Handle unknown notification.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/eglot.el.gz
(cl-defgeneric eglot-handle-notification (server method &rest params)
  "Handle SERVER's METHOD notification with PARAMS.")