aboutsummaryrefslogtreecommitdiffstats
path: root/lua/lspconfig/server_configurations/gradle_ls.lua
Commit message (Collapse)AuthorAgeFilesLines
* refactor: rename "server_configurations" => "configs" #3330Justin M. Keyes2024-10-011-43/+0
| | | | | | | | | | | | | | Problem: The name `server_configurations` is extremely verbose and irritatingly formal and dogmatic. This overlong name is a constant nuisance when reading, writing, and coding. It's also not even correct: these configurations are just as much "client" configurations as they are "server" configurations. Solution: - Rename to a shorter name. - Leave placeholder files for any old URLs that link to the old location.
* fix(gradle_ls): update root_dirEmilio Ziniades2023-11-191-7/+2
|
* fix(gradle): set init_options.settings.gradleWrapperEnabled #1994karlivory2022-07-091-0/+11
| | | | | | | | | | | | | | | Problem: gradle-language-server doesn't work well without some kind of `init_options.settings` parameters. There's some important stuff in: https://github.com/microsoft/vscode-gradle/blob/a0151761aa2a6a07b64ced0dda5f6e9f01e77fd9/gradle-language-server/src/main/java/com/microsoft/gradle/GradleServices.java#L162-L169 that won't get called unless `init_options.settings` is at least defined. In particular if `settings == null`, gradleWrapperEnabled will be `null` as well and https://github.com/microsoft/vscode-gradle/blob/a0151761aa2a6a07b64ced0dda5f6e9f01e77fd9/gradle-language-server/src/main/java/com/microsoft/gradle/resolver/GradleLibraryResolver.java#L106 `libFolder` won't be resolved. Solution: Set `init_options.settings.gradleWrapperEnabled=true` because it's a sensible default, then `init_options.settings` isn't empty.
* feat(gradle): add support for gradle-language-server (#1740)Donnie West2022-02-251-0/+37