Function: eglot-execute-command

eglot-execute-command is a byte-compiled function defined in eglot.el.gz.

This function is obsolete since 30.1; use eglot-execute instead.

Signature

(eglot-execute-command _ _ _)

Implementations

(eglot-execute-command SERVER COMMAND ARGUMENTS) in `eglot.el'.

Undocumented

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/eglot.el.gz
(cl-defgeneric eglot-execute-command (_ _ _)
  (declare (obsolete eglot-execute "30.1"))
  (:method
   (server command arguments)
   (eglot--request server :workspace/executeCommand
                   `(:command ,(format "%s" command) :arguments ,arguments))))