1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-06 06:20:55 -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 @lisp
(:pylsp (:plugins (:jedi_completion (:include_params t (:pylsp (:plugins (:jedi_completion (:include_params t
:fuzzy t :fuzzy t
:cache_for ["pandas" "numpy"] :cache_for ["pandas" "numpy"])
:pylint (:enabled :json-false)))) :pylint (:enabled :json-false)))
:gopls (:usePlaceholders t)) :gopls (:usePlaceholders t))
@end lisp @end lisp
@ -1249,7 +1249,7 @@ is serialized by Eglot to the following JSON text:
"jedi_completion": @{ "jedi_completion": @{
"include_params": true, "include_params": true,
"fuzzy": true, "fuzzy": true,
"cache_for": [ "pandas", "numpy" ], "cache_for": [ "pandas", "numpy" ]
@}, @},
"pylint": @{ "pylint": @{
"enabled": false "enabled": false
@ -1257,8 +1257,8 @@ is serialized by Eglot to the following JSON text:
@} @}
@}, @},
"gopls": @{ "gopls": @{
"usePlaceholders":true "usePlaceholders": true
@}, @}
@} @}
@end example @end example