Commits
Click on a commit to change the comparison rangerefactor(language_server): simplify `workspace/didChangeConfiguration` call (#11462)
Before:
Check if client passed valid options, iterate over them, fill the mutable vecs.
If not valid options are passed, check for configuration support, request, iterate over them, fill the mutable vecs.
After:
Check if client passed valid options, if not check for configuration support, request them and map to workspace configuration.
Iterate over the result and fill the mutable vecs.