Function: eglot-signal-didChangeConfiguration

eglot-signal-didChangeConfiguration is an interactive and byte-compiled function defined in eglot.el.gz.

Signature

(eglot-signal-didChangeConfiguration SERVER)

Documentation

Send a :workspace/didChangeConfiguration signal to SERVER.

When called interactively, use the currently active server

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/eglot.el.gz
(defun eglot-signal-didChangeConfiguration (server)
  "Send a `:workspace/didChangeConfiguration' signal to SERVER.
When called interactively, use the currently active server"
  (interactive (list (eglot--current-server-or-lose)))
  (jsonrpc-notify
   server :workspace/didChangeConfiguration
   (list
    :settings
    (or (eglot--workspace-configuration-plist server)
        eglot--{}))))