From: João Távora Date: Thu, 25 May 2023 13:29:45 +0000 (+0100) Subject: Eglot: fix execution of CodeAction commands X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=bdf852d4bc8931346ba87a71a2d5c08617b26a59;p=emacs.git Eglot: fix execution of CodeAction commands Reported in https://github.com/joaotavora/eglot/discussions/1225. * lisp/progmodes/eglot.el (eglot-execute): Fix typo. --- diff --git a/lisp/progmodes/eglot.el b/lisp/progmodes/eglot.el index cd5831efc48..0140db0c4b3 100644 --- a/lisp/progmodes/eglot.el +++ b/lisp/progmodes/eglot.el @@ -741,7 +741,7 @@ ACTION is an LSP object of either `CodeAction' or `Command' type." (((Command)) (eglot--request server :workspace/executeCommand action)) (((CodeAction) edit command) (when edit (eglot--apply-workspace-edit edit)) - (when command (eglot--request server :workspace/executeCommand action)))))) + (when command (eglot--request server :workspace/executeCommand command)))))) (cl-defgeneric eglot-initialization-options (server) "JSON object to send under `initializationOptions'."