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:
parent
5ef48ad6a3
commit
90db29aff8
1 changed files with 5 additions and 5 deletions
|
|
@ -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
|
||||
|
|
@ -1258,7 +1258,7 @@ is serialized by Eglot to the following JSON text:
|
|||
@},
|
||||
"gopls": @{
|
||||
"usePlaceholders": true
|
||||
@},
|
||||
@}
|
||||
@}
|
||||
@end example
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue