-
Notifications
You must be signed in to change notification settings - Fork 272
Pyls settings.json #448
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
I have the same problem with the rust language server. There seems to be large delay before rls detects a code change, so I wanted to change the "wait_to_build" value. The issue is that I can't verify whether rls actually accepted my settings.josn file. |
@DerWeh your json file is syntactically broken. It needs opening and closing curly braces. This is what I use: {
"pyls": {
"plugins": {
"pyflakes": {
"enabled": true
},
"pydocstyle": {
"enabled": true
}
}
}
} If you configure |
I believe @languitar's comment should have answered the original question. In VSCode, the settings are using condensed structure. When those settings are passed to language servers, they're expanded by splitting with And this is an example of send settings to rust language server, https://github.com/autozimu/LanguageClient-neovim/blob/next/.vim/settings.json |
@autozimu btw, do you think it is wise to have a single default settings file configured in |
Are you talking about the same thing as in #431? |
Ah yes. Thanks. I'll follow that issue. |
Not sure whether pyls has changed since previous comments, but here's the .vim/settings.json format that work for configuring with
To verify, started pyls with:
And grep log:
|
I am no sure weather to ask the question here or at Python-language-server.
I am trying to configure the language server, so I made a folder
.vim
and but a filesettings.json
with the content:This seems not to work. The only reference i have is for vscode.
The question is now, how I have to write the
json
file, thatpyls
accepts it. Is there a way to check, if the client detected the file properly?The text was updated successfully, but these errors were encountered: