Hi,
I noticed the README doesn't currently mention how to configure the Zed editor to use this extension. To help Zed users get up and running quickly, I suggest adding a short "Zed Setup" section to the documentation.
For context, here is the required configuration for settings.json to get the LSP working properly:
{
"languages": {
"Python": {
"language_servers": ["...", "python-autodoc-lsp"]
}
}
}
If this looks good to you, I'd be happy to open a quick Pull Request to update the README with these instructions!
Hi,
I noticed the README doesn't currently mention how to configure the Zed editor to use this extension. To help Zed users get up and running quickly, I suggest adding a short "Zed Setup" section to the documentation.
For context, here is the required configuration for
settings.jsonto get the LSP working properly:{ "languages": { "Python": { "language_servers": ["...", "python-autodoc-lsp"] } } }If this looks good to you, I'd be happy to open a quick Pull Request to update the README with these instructions!