]> git.eshelyaron.com Git - emacs.git/commitdiff
Eglot: check correct capability name in eglot-imenu (bug#64682)
authorBrian Leung <leungbk@posteo.net>
Mon, 17 Jul 2023 13:29:18 +0000 (14:29 +0100)
committerJoão Távora <joaotavora@gmail.com>
Mon, 17 Jul 2023 13:36:51 +0000 (14:36 +0100)
* lisp/progmodes/eglot.el (eglot-imenu): Declare the correct name of
the server capability providing textDocument/documentSymbol.

Without this change, eglot-imenu always aborts even when used with
servers supporting textDocument/documentSymbol.

lisp/progmodes/eglot.el

index 8ac21638a5b24d731cf69d52f994966b51615e13..1df3a8844f800123a19d149c1b41b236144eb92a 100644 (file)
@@ -3367,7 +3367,7 @@ for which LSP on-type-formatting should be requested."
 (cl-defun eglot-imenu ()
   "Eglot's `imenu-create-index-function'.
 Returns a list as described in docstring of `imenu--index-alist'."
-  (unless (eglot--server-capable :textDocument/documentSymbol)
+  (unless (eglot--server-capable :documentSymbolProvider)
     (cl-return-from eglot-imenu))
   (let* ((res (eglot--request (eglot--current-server-or-lose)
                               :textDocument/documentSymbol