1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-06 14:30:50 -08:00

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
This commit is contained in:
Matthew Woodcraft 2023-10-15 19:50:26 +01:00 committed by Eli Zaretskii
parent 5ef48ad6a3
commit 90db29aff8

View file

@ -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