emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

emacs-29 90db29aff86: Fix eglot.texi (JSONRPC objects in Elisp) example


From: Eli Zaretskii
Subject: emacs-29 90db29aff86: Fix eglot.texi (JSONRPC objects in Elisp) example
Date: Wed, 25 Oct 2023 09:27:04 -0400 (EDT)

branch: emacs-29
commit 90db29aff86b96290fd90983b9b5b1749e51897f
Author: Matthew Woodcraft <matthew@woodcraft.me.uk>
Commit: Eli Zaretskii <eliz@gnu.org>

    Fix eglot.texi (JSONRPC objects in Elisp) example
    
    * doc/misc/eglot.texi (JSONRPC objects in Elisp): Correct the
    example.  (Bug#66569)
    
    Copyright-paperwork-exempt: yes
---
 doc/misc/eglot.texi | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/doc/misc/eglot.texi b/doc/misc/eglot.texi
index 6eb212ca841..3ddbac01ce8 100644
--- a/doc/misc/eglot.texi
+++ b/doc/misc/eglot.texi
@@ -1234,8 +1234,8 @@ For example, the plist
 @lisp
 (:pylsp (:plugins (:jedi_completion (:include_params t
                                      :fuzzy t
-                                     :cache_for ["pandas" "numpy"]
-                   :pylint (:enabled :json-false))))
+                                     :cache_for ["pandas" "numpy"])
+                   :pylint (:enabled :json-false)))
  :gopls (:usePlaceholders t))
 @end lisp
 
@@ -1249,7 +1249,7 @@ is serialized by Eglot to the following JSON text:
       "jedi_completion": @{
         "include_params": true,
         "fuzzy": true,
-        "cache_for": [ "pandas", "numpy" ],
+        "cache_for": [ "pandas", "numpy" ]
       @},
       "pylint": @{
         "enabled": false
@@ -1257,8 +1257,8 @@ is serialized by Eglot to the following JSON text:
     @}
   @},
   "gopls": @{
-    "usePlaceholders":true
-  @},
+    "usePlaceholders": true
+  @}
 @}
 @end example
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]